We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e67a4e commit 0d0b279Copy full SHA for 0d0b279
README.md
@@ -9,13 +9,13 @@ to get the head and the tail in constant time.
9
## List
10
11
`List` is a single linked immutable list.
12
-*Usage:
+* Usage:
13
```julia
14
a = List{Int}() # Create a list of the given type.
15
b = list(1,2,3) # Creates a list of 3 elements
16
c = 1 <| b # Creates a new list C using the cons opertor <| with b as the tail.
17
```
18
-*Utility functions:
+* Utility functions:
19
20
21
""" (length(lst1)), O(1) if either list is empty.. needs improvment """
0 commit comments