1 override of All
Microsoft.Data.Analysis (1)
PrimitiveDataFrameColumn.Computations.cs (1)
26public override bool All()
40 references to All
Microsoft.Data.Analysis.Tests (40)
DataFrameTests.BinaryOperations.cs (13)
127Assert.True(verify.All()); 133Assert.True(verify.All()); 136Assert.True(verify.All()); 268Assert.False(newCol.All()); 270Assert.False(newCol.All()); 274Assert.True(newCol.All()); 278Assert.True(newCol.All()); 289Assert.True(newCol.All()); 291Assert.True(newCol.All()); 294Assert.False(newCol.All()); 297Assert.False(newCol.All()); 323Assert.True(newCol.All()); 338Assert.False(newCol.All());
DataFrameTests.Computations.cs (27)
31Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].All()); 33Assert.Throws<NotSupportedException>(() => df.Columns["Char"].All()); 35Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].All()); 37Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].All()); 39Assert.Throws<NotSupportedException>(() => df.Columns["Double"].All()); 41Assert.Throws<NotSupportedException>(() => df.Columns["Float"].All()); 43Assert.Throws<NotSupportedException>(() => df.Columns["Int"].All()); 45Assert.Throws<NotSupportedException>(() => df.Columns["Long"].All()); 47Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].All()); 49Assert.Throws<NotSupportedException>(() => df.Columns["Short"].All()); 51Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].All()); 53Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].All()); 55Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].All()); 59bool all = df.Columns["Bool"].All(); 193Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].All()); 195Assert.Throws<NotSupportedException>(() => df.Columns["Char"].All()); 197Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].All()); 199Assert.Throws<NotSupportedException>(() => df.Columns["Double"].All()); 201Assert.Throws<NotSupportedException>(() => df.Columns["Float"].All()); 203Assert.Throws<NotSupportedException>(() => df.Columns["Int"].All()); 205Assert.Throws<NotSupportedException>(() => df.Columns["Long"].All()); 207Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].All()); 209Assert.Throws<NotSupportedException>(() => df.Columns["Short"].All()); 211Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].All()); 213Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].All()); 215Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].All()); 217Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].All());