Punctuation

Punctuation

Extended documentation for mathematical symbols & functions is here.

symbol meaning
@m invoke macro m; followed by space-separated expressions
! prefix “not” operator
a!( ) at the end of a function name, ! indicates that a function modifies its argument(s)
# begin single line comment
#= begin multi-line comment (these are nestable)
=# end multi-line comment
$ bitwise xor operator, string and expression interpolation
% remainder operator
^ exponent operator
& bitwise and
&& short-circuiting boolean and
| bitwise or
|| short-circuiting boolean or
* multiply, or matrix multiply
() the empty tuple
~ bitwise not operator
\ backslash operator
' complex transpose operator AH
a[] array indexing
[,] vertical concatenation
[;] also vertical concatenation
[  ] with space-separated expressions, horizontal concatenation
T{ } parametric type instantiation
; statement separator
, separate function arguments or tuple components
? 3-argument conditional operator (conditional ? if_true : if_false)
"" delimit string literals
'' delimit character literals
` ` delimit external process (command) specifications
... splice arguments into a function call or declare a varargs function or type
. access named fields in objects or names inside modules, also prefixes elementwise operators
a:b range a, a+1, a+2, ..., b
a:s:b range a, a+s, a+2s, ..., b
: index an entire dimension (1:end)
:: type annotation, depending on context
:( ) quoted expression
:a symbol a

© 2009–2016 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors
Licensed under the MIT License.
https://docs.julialang.org/en/release-0.5/stdlib/punctuation/

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部