# bool `````{roto:type} bool The boolean type. This type has two possible values: `true` and `false`. Several boolean operations can be used with booleans, such as `&&` ( logical and), `||` (logical or) and `not`. ````` ````{roto:function} to_string(self: bool) -> String Convert this value into a `String`. ````