1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00

Corlib fixes

This commit is contained in:
Brian Fiete 2020-02-05 17:07:47 -08:00
parent 45638a6e7e
commit 2ed6a9a94b
3 changed files with 7 additions and 45 deletions

View file

@ -2017,26 +2017,6 @@ namespace System
inStr = scope:: String(outStr);
}
/*public static mixin StackSplit(var target, var splitChar)
{
var stringViews = scope List<StringView>();
target.Split(stringViews, splitChar);
var strings = stack List<String>();
for (int i = 0; i < stringViews.Count; i++)
strings.Add(stack String(stringViews[i]));
strings
}*/
/*public static mixin StackSplit(var target, var splitChar)
{
var stringViews = scope List<StringView>();
target.Split(stringViews, splitChar);
var strings = stack String[stringViews.Count];
for (int i = 0; i < stringViews.Count; i++)
strings[i] = stack String(stringViews[i]);
strings
}*/
public static mixin StackSplit(var target, var splitChar)
{
var strings = scope:mixin List<String>();