Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Type matching

“is” operator

v is T

“switch type” statement

switch type (v) {
    case (regex : RegExp) {
        trace("a regex");
    }
    case ([x, y] : [double, double]) {
        trace("a tuple of double");
    }
    default {
        trace("any other");
    }
}