XCompile
    Preparing search index...

    Interface Function

    interface Function {
        body: Unit[];
        exported?: boolean;
        kind: "function";
        name: string;
        parameters: xir.Declaration[];
        returns: xir.Type;
        storage?: xir.StorageClass;
    }
    Index

    Properties

    body: Unit[]
    exported?: boolean
    kind: "function"
    name: string
    parameters: xir.Declaration[]
    returns: xir.Type
    storage?: xir.StorageClass