Description Usage Arguments Functions Examples
A collection of inline operators to simplify and make your code prettier.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | lhs %\n% rhs
lhs %<<% rhs
lhs %<<<% rhs
lhs %~% rhs
lhs %!~% rhs
lhs %or% rhs
lhs %inherits% rhs
lhs %is a% rhs
|
lhs |
left hand side |
rhs |
right hand side |
%\n%
: Concatenate with new line.
%<<%
: Concatenate with space
%<<<%
: Concatenate without space
%~%
: inline pattern match
%!~%
: inline pattern "does not match"
%or%
: Return x unless length(lhs)==0
then return rhs
.
%inherits%
: Inline alias of inherits
%is a%
: Alternative form of inherits.
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.