4 references to Split
Microsoft.ML.Tests (1)
ExpressionLanguageTests\ExpressionLanguageTests.cs (1)
268var vals = ReadOnlyMemoryUtils.Split(line, new char[] { ',' })
Microsoft.ML.Transforms (3)
HashJoiningTransform.cs (2)
348var parts = ReadOnlyMemoryUtils.Split(slotMapString.AsMemory(), new[] { ';' }).ToArray(); 352var slotIndices = ReadOnlyMemoryUtils.Split(parts[i], new[] { ',' }).ToArray();
SvmLight\SvmLightLoader.cs (1)
159var ator = ReadOnlyMemoryUtils.Split(left, _seps).GetEnumerator();