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

IsCallable() public method

public IsCallable ( IType type ) : bool
type IType
return bool
        public bool IsCallable(IType type)
        {
            return (TypeType == type) || IsCallableType(type) || IsDuckType(type);
        }
TypeSystemServices