# `MGOrderedDictionary.allKeysInternal`

*Instance Property*

Returns a reference to the internal order array.

## Declaration

```swift
var allKeysInternal: [Any] { get }
```

```objc
@property (nonatomic, readonly) NSArray * allKeysInternal;
```

```python
allKeysInternal() -> list
```

## Discussion

The array may change when the ordered dictionary is modified. Use this array only in performance-sensitive code and `allKeys` otherwise.

