Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsFloatingPointNumber C# (CSharp) Method

IsFloatingPointNumber() public method

public IsFloatingPointNumber ( IType type ) : bool
type IType
return bool
        public bool IsFloatingPointNumber(IType type)
        {
            return (type == DoubleType || type == SingleType);
        }
TypeSystemServices