DoxigAlpha

isLineOverIndented

Checks to see if the most recent indentation exceeds the currently pushed indents

Function parameters

Parameters

#
ais:*AutoIndentingStream

Type definitions in this namespace

Types

#

Functions in this namespace

Functions

#

Error sets in this namespace

Error Sets

#

Source

Implementation

#
pub fn isLineOverIndented(ais: *AutoIndentingStream) bool {
    if (ais.current_line_empty) return false;
    return ais.applied_indent > ais.currentIndent();
}