5 overrides of Combine
Microsoft.ML.Data (5)
Data\Combiner.cs (5)
38
public override void
Combine
(ref ReadOnlyMemory<char> dst, ReadOnlyMemory<char> src)
64
public override void
Combine
(ref float dst, float src) { dst += src; }
86
public override void
Combine
(ref Single dst, Single src) { dst += src; }
108
public override void
Combine
(ref Double dst, Double src) { dst += src; }
131
public override void
Combine
(ref uint dst, uint src) { dst += src; }
7 references to Combine
Microsoft.ML.Data (7)
Data\BufferBuilder.cs (7)
169
_comb.
Combine
(ref _values[index], value);
194
_comb.
Combine
(ref _values[index], value);
203
_comb.
Combine
(ref _values[index], value);
236
_comb.
Combine
(ref _values[ivDst], value);
292
_comb.
Combine
(ref _values[ivDst - 1], _values[ivSrc]);
408
_comb.
Combine
(ref _values[index + i], values[i]);
424
_comb.
Combine
(ref _values[index + indices[i]], values[i]);