|
InfiniteListT Constructor (T, Int32)
|
create a new infinite list
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic InfiniteList(
T item,
int capacity = 1
)
Public Sub New (
item As T,
Optional capacity As Integer = 1
)
public:
InfiniteList(
T item,
int capacity = 1
)
new :
item : 'T *
?capacity : int
(* Defaults:
let _capacity = defaultArg capacity 1
*)
-> InfiniteList
Parameters
- item
- Type: T
item to be added - capacity (Optional)
- Type: SystemInt32
initial capacity of the list
See Also