@oazmi/kitchensink - v0.9.13
github
readme
src
dist
examples
Preparing search index...
array1d
GenericStack
Interface GenericStack<T>
type definition for a generic stack data structure, that is aware of its size.
interface
GenericStack
<
T
>
{
length
:
number
;
push
:
(
...
items
:
T
[]
)
=>
any
;
pop
:
()
=>
undefined
|
T
;
}
Type Parameters
T
Index
Properties
length
push
pop
Properties
Readonly
length
length
:
number
push
push
:
(
...
items
:
T
[]
)
=>
any
pop
pop
:
()
=>
undefined
|
T
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
length
push
pop
github
readme
src
dist
examples
@oazmi/kitchensink - v0.9.13
Loading...
type definition for a generic stack data structure, that is aware of its size.