com.livecode.arithmetic | |
Type | module |
Dictionary | LCB |
Library | LiveCode Builder |
Associations | com.livecode.arithmetic |
Summary | This library consists of the basic arithmetic operations of standard library of LiveCode Builder. |
Description | This library consists of the basic arithmetic operations of standard library of LiveCode Builder. |
Type | Name | Summary | Syntax |
---|---|---|---|
module | com.livecode.arithmetic | This library consists of the basic arithmetic operations of standard library of LiveCode Builder. | |
operator | ListOfStringParsedAsListOfNumber | Parses a list of strings as a list of numbers | <Operand> parsed as list of number |
- - - | MinusOperator | Binary minus operator. | <Left> - <Right> |
- - - | MinusUnaryOperator | Unary minus operator. | - <Operand> |
- - - | ModOperator | Mod operator. | <Left> mod <Right> |
- - - | NumberFormattedAsString | Formats a numeric value as a string | <Operand> formatted as string |
- - - | NumberIsEqualToNumber | Equal to relation. | <Left> = <Right> |
- - - | NumberIsGreaterThanNumber | Greater than relation. | <Left> > <Right> |
- - - | NumberIsGreaterThanOrEqualToNumber | Greater than or equal to relation. | <Left> >= <Right> |
- - - | NumberIsLessThanNumber | Less than relation. | <Left> < <Right> |
- - - | NumberIsLessThanOrEqualToNumber | Less than or equal to relation. | <Left> <= <Right> |
- - - | NumberIsNotNumber | Determines if Left is not Right. | <Left> is not <Right> |
- - - | NumberIsNumber | Determines if Left is Right. | <Left> is <Right> |
- - - | OverOperator | Binary division operator. | <Left> / <Right> |
- - - | PlusOperator | Binary plus operator. | <Left> + <Right> |
- - - | PlusUnaryOperator | Unary plus operator. | + <Operand> |
- - - | StringParsedAsNumber | Parses a string as an number | <Operand> parsed as number |
- - - | TimesOperator | Binary multiplication operator. | <Left> * <Right> |
- - - | WrapOperator | Wrap operator. | <Left> wrap <Right> |
statement | AddNumberTo | Adds Value to Target. | add <Value> to <Target> |
- - - | DivideNumberBy | Divides Target by Value. | divide <Target> by <Value> |
- - - | FormatNumberAsString | Formats a numeric value as a string | format <Operand> as string |
- - - | MultiplyNumberBy | Multiplies Target by Value. | multiply <Target> by <Value> |
- - - | ParseListOfStringAsListOfNumber | Parses a list of strings as a list of numbers | parse <Operand> as list of number |
- - - | ParseStringAsNumber | Parses a string as an number | parse <Operand> as number |
- - - | SubtractNumberFrom | Subtracts Value from Target. | subtract <Value> from <Target> |