mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
Corlib fixes
This commit is contained in:
parent
45638a6e7e
commit
2ed6a9a94b
3 changed files with 7 additions and 45 deletions
|
@ -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>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue