Difference between revisions of "Number type"

From MiniScript Wiki
Jump to navigation Jump to search
m
 
Line 2: Line 2:
 
MiniScript's core type system.   
 
MiniScript's core type system.   
  
See also: [[string]]; [[list]]; [[map]]; [[funcRef]]
+
See also: [[string type|string]]; [[list type|list]]; [[map type|map]]; [[funcRef]]
  
 
=== Usage Notes ===
 
=== Usage Notes ===

Latest revision as of 22:12, 1 November 2020

number returns a map that represents the number datatype in MiniScript's core type system.

See also: string; list; map; funcRef

Usage Notes

number can be used with isa to check whether a variable refers to a number. You can also assign new methods here to make them available to all maps(though because of a limitation in MiniScript's parser, such methods do not work on numeric literals).

Example

42 isa number		// returns 1