danog\MadelineProto\Db\DbType
Author: Daniil Gentili daniil@daniil.it
DB type interface.
Method list:
isset(\TKey $key): bool
unset(\TKey $key): void
set(\TKey $key, \TValue $value): void
offsetGet(\TKey $index): mixed
clear(): void
getIterator(): \Traversable
count(): mixed
Methods:
isset(\TKey $key): bool
Check if element is set.
Parameters:
$key
:\TKey
See also:
\TKey
unset(\TKey $key): void
Unset element.
Parameters:
$key
:\TKey
See also:
\TKey
set(\TKey $key, \TValue $value): void
Set element.
Parameters:
$key
:\TKey
$value
:\TValue
See also:
\TKey
\TValue
offsetGet(\TKey $index): mixed
Get element.
Parameters:
$index
:\TKey
See also:
\TKey
clear(): void
Clear all elements.
getIterator(): \Traversable
Get iterator.
Fully typed return value:
\Traversable<\TKey, \TValue>
See also:
\TKey
\TValue
\Traversable
count(): mixed
Generated by danog/phpdoc