mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 00:50:25 +02:00
Added multi-line custom build command
This commit is contained in:
parent
c4544f67d3
commit
c6f1f358a9
8 changed files with 110 additions and 17 deletions
|
@ -304,6 +304,12 @@ namespace System.Collections
|
|||
#endif
|
||||
}
|
||||
|
||||
public void AddRange(IEnumerator<T> items)
|
||||
{
|
||||
for (let item in items)
|
||||
Add(item);
|
||||
}
|
||||
|
||||
/// Returns a pointer to the start of the added uninitialized section
|
||||
public T* GrowUnitialized(int addSize)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue