> 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/instructions/instructions.library_calls.md).

# Instructions.library\_calls()

Returns a list of all library call instructions.

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

## Query Example

```python
from glider import *


def query():
  return Instructions().library_calls().exec(1,4)
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fd7QeQRKqjA0ompyjNp4h%2Fimage.png?alt=media&amp;token=d2f6e42e-38df-4852-a6df-9e46f76b1c77" alt=""><figcaption></figcaption></figure>

This outputs the call to the `Math.log10(value)` library function.
