@eagleoutice/flowr - v2.13.14
    Preparing search index...

    What a single argument of a call is used for, as a bitmask.

    Index
    Alias: 1

    the result is this argument, handed back unchanged, like x in identity(x); this is what draws the Returns edge

    Bounds: 1024

    the result is one of this argument's values, like choices in match.arg(arg, choices). The bounding argument of a CallProp.Narrows call; without one such a call yields a value of its own making.

    Callee: 256

    called as a function, like FUN in lapply(x, FUN)

    Flag: 8

    selects a behavior instead of carrying data, like na.rm in sum(x, na.rm = TRUE)

    Forced: 64

    evaluated whenever the call happens, even if the result goes unused, like x in force(x)

    Nse: 128

    quoted or evaluated in another frame, like expr in quote(expr)

    Presence: 512

    only whether it was supplied matters, as with missing()

    Resource: 16

    names the resource the call reads or writes, like file in write.csv(x, file)

    Shape: 4

    only the shape is used (length, dimensions, names, other attributes), like x in nrow(x)

    Value: 2

    the result is computed from the argument's value, like x in sum(x)

    Written: 32

    what it refers to may be modified, like envir in assign(x, v, envir = e)