Search Results
13 functions found:
| 1. | AddOrRemoveValue( listOfValues ; value ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion/cleanup) remove all instances of a value from a list, or add it, if it's not there. | |
| 2. | Apply ( function ; value ) OBSOLETE USE ApplyFunction instead |
| Debi Fuchs, Aptworks Consulting | |
| Define an apply a temporary, anonymous function to a value | |
| 3. | ApplyFunction( function; value ) |
| Debi Fuchs, Aptworks Consulting | |
| Define an apply a temporary, anonymous function to a value | |
| 4. | ApplyToList ( function ; listOfValues ; separator ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (using limited recursion and avoiding GetValue) apply an "inline" function across a list of up to one million items, handling them either as numbers/expression or as text. | |
| 5. | ApplyToRange ( function ; start ; end ; step ; separator ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and using limited recursion) apply an "inline" function across a range of up to one million numbers. | |
| 6. | BaseConvert ( string; baseFrom; baseTo ) |
| Debi Fuchs, Aptworks Consulting | |
| Convert a number (up to 10 billion) from one base to another. | |
| 7. | CullNulls ( listOfValues ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion) remove empty items from a list. | |
| 8. | IndexList ( size ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with limited recursion) return a list of up to one million integers from 0 to (size-1). | |
| 9. | NewlinesToReturns ( text ) |
| Debi Fuchs, Aptworks Consulting | |
| In FileMaker 9 and earlier, remove any newline characters (ASCII 10) from the original text, substituting return characters instead. | |
| 10. | RemoveValue ( listOfValues ; value) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion or cleanup of empty values) remove all instances of a value from a list. | |
| 11. | RemoveValues_PreservingDuplicates ( MyList; Out ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion) filter values out of a list (keeping any dups) | |
| 12. | RemoveValues_ReturningUnique ( MyList; Out ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion) filter values out of a list (returning unique values only) | |
| 13. | Supertrim ( text ) |
| Debi Fuchs, Aptworks Consulting | |
| Speedily (and with no recursion) remove leading and trailing white space (including spacing, non-breaking spaces, tabs, returns and line feeds) from a text string. | |