(
id: number,
expression: BasicExpression,
name?: string,
options?: any,
)
| 106 | protected hasCustomComparator = false |
| 107 | |
| 108 | constructor( |
| 109 | id: number, |
| 110 | expression: BasicExpression, |
| 111 | name?: string, |
| 112 | options?: any, |
| 113 | ) { |
| 114 | this.id = id |
| 115 | this.expression = expression |
| 116 | this.compareOptions = DEFAULT_COMPARE_OPTIONS |
| 117 | this.name = name |
| 118 | this.initialize(options) |
| 119 | } |
| 120 | |
| 121 | // Abstract methods that each index type must implement |
| 122 | abstract add(key: TKey, item: any): void |
nothing calls this directly
no test coverage detected