# `GSFont.allGlyphs`

*Instance Property*

The local and imported glyphs available to the font.

## Declaration

```swift
var allGlyphs: [GSGlyph] { get }
```

```objc
@property (nonatomic, strong, readonly) NSArray<GSGlyph *> * allGlyphs;
```

```python
allGlyphs() -> list[GSGlyph]
```

## Discussion

A local glyph takes precedence over an imported glyph with the same name. Imported glyphs with names already present in [`GSFont.glyphs`](/Core/GlyphsCore/GSFont/glyphs) are not included.

## See Also

### Glyphs

- [`GSFont.glyphs`](/Core/GlyphsCore/GSFont/glyphs) — The local glyphs defined by the font.
- [`GSFont.importedGlyphs`](/Core/GlyphsCore/GSFont/importedGlyphs) — The glyphs supplied by linked fonts.
- [`GSFont.count`](/Core/GlyphsCore/GSFont/count) — The number of local glyphs defined by the font.
- [`GSFont countOfGlyphs`](/Core/GlyphsCore/GSFont/countOfGlyphs) — The number of local glyphs defined by the font.
- [`GSFont glyphAtIndex:`](/Core/GlyphsCore/GSFont/glyphAtIndex:) — Returns the local glyph at an index in [`GSFont.glyphs`](/Core/GlyphsCore/GSFont/glyphs), or `nil` when the index is out of bounds.
- [`GSFont indexOfGlyph:`](/Core/GlyphsCore/GSFont/indexOfGlyph:) — Returns the index of a local glyph in [`GSFont.glyphs`](/Core/GlyphsCore/GSFont/glyphs), or `NSNotFound` when the glyph is not present.

