1 override of Any
Microsoft.Data.Analysis (1)
PrimitiveDataFrameColumn.Computations.cs (1)
32public override bool Any()
30 references to Any
Microsoft.Data.Analysis.Tests (30)
DataFrameTests.BinaryOperations.cs (3)
124Assert.False(verify.Any()); 133Assert.False(verify.Any()); 136Assert.False(verify.Any());
DataFrameTests.Computations.cs (27)
30Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].Any()); 32Assert.Throws<NotSupportedException>(() => df.Columns["Char"].Any()); 34Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].Any()); 36Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].Any()); 38Assert.Throws<NotSupportedException>(() => df.Columns["Double"].Any()); 40Assert.Throws<NotSupportedException>(() => df.Columns["Float"].Any()); 42Assert.Throws<NotSupportedException>(() => df.Columns["Int"].Any()); 44Assert.Throws<NotSupportedException>(() => df.Columns["Long"].Any()); 46Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].Any()); 48Assert.Throws<NotSupportedException>(() => df.Columns["Short"].Any()); 50Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].Any()); 52Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].Any()); 54Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].Any()); 56bool any = df.Columns["Bool"].Any(); 192Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].Any()); 194Assert.Throws<NotSupportedException>(() => df.Columns["Char"].Any()); 196Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].Any()); 198Assert.Throws<NotSupportedException>(() => df.Columns["Double"].Any()); 200Assert.Throws<NotSupportedException>(() => df.Columns["Float"].Any()); 202Assert.Throws<NotSupportedException>(() => df.Columns["Int"].Any()); 204Assert.Throws<NotSupportedException>(() => df.Columns["Long"].Any()); 206Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].Any()); 208Assert.Throws<NotSupportedException>(() => df.Columns["Short"].Any()); 210Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].Any()); 212Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].Any()); 214Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].Any()); 216Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].Any());