13 references to ForDecimal
Microsoft.CodeAnalysis.CSharp (1)
Utilities\ValueSetFactory.cs (1)
49SpecialType.System_Decimal => ForDecimal,
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (12)
Utilities\ValueSetTests.cs (12)
503Assert.Same(ForDecimal, ForSpecialType(SpecialType.System_Decimal)); 514Assert.Equal("[-79228162514264337593543950335..-0.0000000000000000000000000001]", ForDecimal.Related(LessThan, 0.0m).ToString()); 515Assert.Equal("[-79228162514264337593543950335..0.0000000000000000000000000000]", ForDecimal.Related(LessThanOrEqual, 0.0m).ToString()); 516Assert.Equal("[0.0000000000000000000000000001..79228162514264337593543950335]", ForDecimal.Related(GreaterThan, 0.0m).ToString()); 517Assert.Equal("[0.0000000000000000000000000000..79228162514264337593543950335]", ForDecimal.Related(GreaterThanOrEqual, 0.0m).ToString()); 582Assert.False(ForDecimal.Related(LessThan, d).Any(Equal, d)); 583Assert.True(ForDecimal.Related(LessThanOrEqual, d).Any(Equal, d)); 584Assert.False(ForDecimal.Related(GreaterThan, d).Any(Equal, d)); 585Assert.True(ForDecimal.Related(GreaterThanOrEqual, d).Any(Equal, d)); 597ForFloat, ForDouble, ForDecimal, ForNint, 621ForDecimal, ForNint, 870ForDecimal,