skiad ~master (2021-12-10T09:24:11.7193035)
Dub
Repo
ICollection
skia
Common
Undocumented in source.
interface
ICollection : IEnumerable!T(
T
) {
int
Count
();
bool
IsReadOnly
();
void
Add
(T item);
void
Clear
();
bool
Contains
(T item);
void
CopyTo
(T[] array, int arrayIndex);
bool
Remove
(T item);
}
Members
Functions
Add
void
Add
(T item)
Undocumented in source.
Clear
void
Clear
()
Undocumented in source.
Contains
bool
Contains
(T item)
Undocumented in source.
CopyTo
void
CopyTo
(T[] array, int arrayIndex)
Undocumented in source.
Count
int
Count
()
Undocumented in source.
IsReadOnly
bool
IsReadOnly
()
Undocumented in source.
Remove
bool
Remove
(T item)
Undocumented in source.
Meta
Source
See Implementation
skia
Common
aliases
IEnumerable
functions
ToList
interfaces
ICollection
IDictionary
IList