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)
121Assert.True(verify.All()); 127Assert.True(verify.All()); 130Assert.True(verify.All()); 262Assert.False(newCol.All()); 264Assert.False(newCol.All()); 268Assert.True(newCol.All()); 272Assert.True(newCol.All()); 283Assert.True(newCol.All()); 285Assert.True(newCol.All()); 288Assert.False(newCol.All()); 291Assert.False(newCol.All()); 317Assert.True(newCol.All()); 332Assert.False(newCol.All());
DataFrameTests.Computations.cs (27)
29Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].All()); 31Assert.Throws<NotSupportedException>(() => df.Columns["Char"].All()); 33Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].All()); 35Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].All()); 37Assert.Throws<NotSupportedException>(() => df.Columns["Double"].All()); 39Assert.Throws<NotSupportedException>(() => df.Columns["Float"].All()); 41Assert.Throws<NotSupportedException>(() => df.Columns["Int"].All()); 43Assert.Throws<NotSupportedException>(() => df.Columns["Long"].All()); 45Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].All()); 47Assert.Throws<NotSupportedException>(() => df.Columns["Short"].All()); 49Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].All()); 51Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].All()); 53Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].All()); 57bool all = df.Columns["Bool"].All(); 191Assert.Throws<NotSupportedException>(() => df.Columns["Byte"].All()); 193Assert.Throws<NotSupportedException>(() => df.Columns["Char"].All()); 195Assert.Throws<NotSupportedException>(() => df.Columns["Decimal"].All()); 197Assert.Throws<NotSupportedException>(() => df.Columns["Double"].All()); 199Assert.Throws<NotSupportedException>(() => df.Columns["Float"].All()); 201Assert.Throws<NotSupportedException>(() => df.Columns["Int"].All()); 203Assert.Throws<NotSupportedException>(() => df.Columns["Long"].All()); 205Assert.Throws<NotSupportedException>(() => df.Columns["Sbyte"].All()); 207Assert.Throws<NotSupportedException>(() => df.Columns["Short"].All()); 209Assert.Throws<NotSupportedException>(() => df.Columns["Uint"].All()); 211Assert.Throws<NotSupportedException>(() => df.Columns["Ulong"].All()); 213Assert.Throws<NotSupportedException>(() => df.Columns["Ushort"].All()); 215Assert.Throws<NotSupportedException>(() => df.Columns["DateTime"].All());