> For the complete documentation index, see [llms.txt](https://docs.augelab.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.augelab.com/german/function-blocks/data-logic/datenoperationen-data-operations/is-none.md).

# Is None

Dieser Funktionsblock ist so konzipiert, dass er überprüft, ob ein Eingabewert `None` ist. Er bietet eine einfache Möglichkeit, bedingte Logik basierend auf der Anwesenheit oder Abwesenheit von Daten durchzusetzen.

## 📥 Eingänge <a href="#inputs" id="inputs"></a>

`Generic` Dieser Eingang akzeptiert jeden Datentyp, den Sie für die `None`-Bedingung bewerten möchten.

## 📤 Ausgänge <a href="#outputs" id="outputs"></a>

`Boolean` Diese Ausgabe gibt entweder `true` oder `false` zurück, was anzeigt, ob die Eingabedaten `None` sind.

## 🕹️ Steuerungen <a href="#controls" id="controls"></a>

Dieser Block hat keine spezifischen Steuerelemente, da er eine einfache Überprüfung der Eingabe durchführt.

## 🎨 Funktionen <a href="#features" id="features"></a>

`Versatile Input Handling` Der Block akzeptiert jeden Datentyp, was ihn flexibel für verschiedene Anwendungsfälle in Ihrem Arbeitsablauf macht.

`Simple Boolean Output` Bietet eine klare boolesche Ausgabe, um den Status der Eingabedaten anzuzeigen.

## 📝 Nutzungshinweise <a href="#usage" id="usage"></a>

1. **Connect Input**: Verbinden Sie einen datenerzeugenden Block mit dem `Generic` Eingang, um zu überprüfen, ob dessen Ausgang `None` ist.
2. **Evaluate**: Führen Sie den Block aus, um eine boolesche Ausgabe zu erhalten, die angibt, ob der Eingabewert `None` ist.

## 📊 Bewertung <a href="#evaluation" id="evaluation"></a>

Bei der Bewertung überprüft dieser Funktionsblock die Eingabe und gibt `true` zurück, wenn die Eingabe `None` ist, andernfalls gibt er `false` zurück.

## 💡 Tipps und Tricks <a href="#tips-and-tricks" id="tips-and-tricks"></a>

<details>

<summary>Bedingte Logik</summary>

Nutzen Sie diesen Block, um bedingte Abläufe in Ihren Workflows zu erstellen. Sie können ihn mit `And`- oder `Or`-Blöcken verbinden, um komplexere Logik basierend auf der Anwesenheit oder Abwesenheit von Daten zu erstellen.

</details>

<details>

<summary>Datenvalidierung</summary>

Verwenden Sie diesen Block, um zu überprüfen, ob frühere Ausgaben gültig sind, bevor Sie mit weiteren Bildverarbeitungs- oder Analyseblöcken fortfahren, um Laufzeitfehler zu vermeiden.

</details>

## 🛠️ Fehlersuche <a href="#troubleshooting" id="troubleshooting"></a>

<details>

<summary>Unerwartete False-Ausgabe</summary>

Wenn Sie ein `true`-Ergebnis erwartet haben, aber `false` erhalten haben, überprüfen Sie die Quelle, die mit dem Eingang verbunden ist. Stellen Sie sicher, dass die gesendeten Daten tatsächlich `None` sind.

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.augelab.com/german/function-blocks/data-logic/datenoperationen-data-operations/is-none.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
