Tutorial by Topics: function

<calc()> = calc( <calc-sum> ) <calc-sum> = <calc-product> [ [ '+' | '-' ] <calc-product> ]* <calc-product> = <calc-value> [ '*' <calc-value> | '/' <number> ]* <calc-value> = <number> | <dimension> | <percentage> | ( ...
index(big, little) length or length() length(string) match(string, regex) split(string, array, separator) split(string, array) sprintf(format, ...) sub(regex, subst, string) sub(regex, subst) gsub(regex, subst) gsub(regex, subst, string) substr(string, start, end) substr(string, start)...
Other than in ordinary C / C++ , the Arduino IDE allows to call a function before it is defined. In .cpp files, you have to define the function, or at least declare the function prototype before you can use it. In an .ino file, the Arduino IDE creates such a prototype behind the scenes. Arduino ...
CREATE FUNCTION function_name ( [list_of_paramenters] ) RETURNS return_data_type AS BEGIN function_body RETURN scalar_expression END ArgumentDescriptionfunction_namethe name of functionlist_of_paramentersparameters that function acceptsreturn_data_typetype that function returs. Some SQL...
val (|>) : 'a -> ('a -> 'b) -> 'b val (@@) : ('a -> 'b) -> 'a -> 'b
strsplit( x split fixed = FALSE perl = FALSE useBytes = FALSE)
MD5 and SHA1 are insecure and should be avoided. The examples exist for educational purposes and due to the fact that legacy software may still use these algorithms.
=DATEDIF(start_date,end_date,unit) UnitReturns"Y"The number of complete years in the period"M"The number of complete months in the period"D"The number of days in the period"MD"The difference between the days in start_date and end_date. The months and ...
Dart is a true object-oriented language, so even functions are objects and have a type, Function. This means that functions can be assigned to variables or passed as arguments to other functions. You can also call an instance of a Dart class as if it were a function.
f(n) = ... function f(n) ... end n::Type x -> ... f(n) do ... end Aside from generic functions (which are most common), there are also built-in functions. Such functions include is, isa, typeof, throw, and similar functions. Built-in functions are typically implemented in C instead ...

Page 3 of 8