The boolean module

The boolean module provides functions for working with boolean values. It aso serves as the boolean metatable.

Free functions

parse(value: string): boolean

Parse the given string into a boolean value. The string must be either "true" or "false". If

Metamethods

__eq__(other: any): boolean

Returns true if the boolean value is equal to the given value.