Interface IKavenCollection<T>
Properties
Count
Count: number
Methods
Add
- Add(key: string, value: T): boolean
-
Returns boolean
ContainsKey
- ContainsKey(key: string): boolean
-
Returns boolean
GetValue
- GetValue(key: string, defaultValue?: T): undefined | T
-
Parameters
-
key: string
-
Optional
defaultValue: T
Returns undefined | T
Keys
- Keys(): string[]
-
Returns string[]
Remove
- Remove(key: string): T
-
Returns T
Values
- Values(): T[]
-
Returns T[]