wesl
    Preparing search index...

    Interface BinaryOperator

    interface BinaryOperator {
        span: Span;
        value:
            | "^"
            | "|"
            | "&"
            | "*"
            | "-"
            | "||"
            | "&&"
            | "+"
            | "/"
            | "%"
            | "=="
            | "!="
            | "<"
            | "<="
            | ">"
            | ">="
            | "<<"
            | ">>";
    }
    Index

    Properties

    Properties

    span: Span
    value:
        | "^"
        | "|"
        | "&"
        | "*"
        | "-"
        | "||"
        | "&&"
        | "+"
        | "/"
        | "%"
        | "=="
        | "!="
        | "<"
        | "<="
        | ">"
        | ">="
        | "<<"
        | ">>"