G.tobool
From GMod Wiki
| Function | |
| Syntax | tobool( Var  value ) Where is this used? | 
| Description: | |
| Attempts to cast the argument as a bool. | |
| Returns: | Boolean | 
| Part of Library: | Global Functions | 
| Realm: |  | 
| BBCode Link: | [b][url=http://wiki.garrysmod.com/?title=G.tobool]G.tobool [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] | 
	
Examples
| Description | Some acceptable usages. | 
|---|---|
| Used on |  | 
| Code | print( tobool( true ) ) print( tobool( 1 ) ) print( tobool( 0 ) ) print( tobool( "true" ) ) print( tobool( "false" ) ) | 
| Output | true true false true false | 
 
			
			