> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callable/callable.end_if_instructions.md).

# Callable.end\_if\_instructions()

`end_if_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

## Example

```python
from glider import *
def query():
  functions = Functions().exec(100)

  conditional = []
  for function in functions:
    for if_instruction in function.end_if_instructions().exec():
      # For each function, return the conditional (if) instructions
      conditional.append(if_instruction)

  return conditional
```

## Example output

<figure><img src="/files/QTi11kZ4tmWSK30bfBCL" alt=""><figcaption></figcaption></figure>
