circu.js
    Preparing search index...

    Enumeration OpenModeConst

    File open mode flags (corresponding to C string flags)

    'r' (read-only), 'w' (write-create), 'r+' (read-write), 'a' (append)
    
    Index

    Enumeration Members

    APPEND: "a"

    Write-only (append)

    EXCLUSIVE: "wx"

    Write-only (exclusive create)

    READ: "r"

    Read-only

    READ_APPEND: "a+"

    Read-write (append)

    READ_EXCLUSIVE: "w+x"

    Read-write (exclusive create)

    READ_WRITE: "r+"

    Read-write (create or truncate)

    WRITE: "w"

    Write-only (create or truncate)