You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`[;]`|[vertical concatenation](@ref man-array-concatenation) (calling [`vcat`](@ref) or [`hvcat`](@ref)) |
33
33
|`[ ]`| with space-separated expressions, [horizontal concatenation](@ref man-concatenation) (calling [`hcat`](@ref) or [`hvcat`](@ref)) |
34
-
|`T{ }`| curly braces following a type list that type's [parameters](@ref Parametric-Types) |
34
+
|`T{ }`| curly braces following a type list that type's [parameters](@ref Parametric-Types) |
35
35
|`{}`| curly braces can also be used to group multiple [`where`](@ref) expressions in function declarations |
36
36
|`;`| semicolons separate statements, begin a list of keyword arguments in function declarations or calls, or are used to separate array literals for vertical concatenation |
37
37
|`,`| commas separate function arguments or tuple or array components |
@@ -55,6 +55,6 @@ Extended documentation for mathematical symbols & functions is [here](@ref math-
55
55
|[`==`](@ref)| double equals sign is value equality comparison |
56
56
|[`===`](@ref)| triple equals sign is programmatically identical equality comparison |
57
57
|[`=>`](@ref Pair) | right arrow using an equals sign defines a [`Pair`](@ref) typically used to populate [dictionaries](@ref Dictionaries) |
58
-
|`->`| right arrow using a hyphen defines an [anonymous function](@ref man-anonymous-functions) on a single line|
59
-
| `|>` | pipe operator passes output from the left argument to input of the right argument, usually a [function](@ref Function-composition-and-piping) |
60
-
|`∘`| function composition operator (typed with \circ{tab}) combines two functions as though they are a single larger [function](@ref Function-composition-and-piping) |
58
+
|`->`| right arrow using a hyphen defines an [anonymous function](@ref man-anonymous-functions) on a single line |
59
+
| `|>` | pipe operator passes output from the left argument to input of the right argument, usually a [function](@ref Function-composition-and-piping) |
60
+
|`∘`| function composition operator (typed with \circ{tab}) combines two functions as though they are a single larger [function](@ref Function-composition-and-piping) |
0 commit comments