Skip to content

Commit ee19032

Browse files
docs(README.md): update.
1 parent 7d6d4a4 commit ee19032

File tree

1 file changed

+185
-0
lines changed

1 file changed

+185
-0
lines changed

README.md

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,191 @@ The documentation is in construction and it's available at [https://docs.angular
9494

9595
### Api
9696

97+
#### list.add()
98+
99+
```scss
100+
list.add($list, $separator: auto, $value, $values...)
101+
```
102+
103+
#### list.append()
104+
105+
```scss
106+
list.add($list, $separator: auto, $value, $values...)
107+
```
108+
109+
#### list.each()
110+
111+
```scss
112+
list.each($list, $comma: true, $index: 1)
113+
```
114+
115+
#### list.empty()
116+
117+
```scss
118+
list.empty($list)
119+
```
120+
121+
#### list.extract-map()
122+
123+
```scss
124+
list.extract-map($list, $occurrence: first)
125+
```
126+
127+
#### list.first()
128+
129+
```scss
130+
list.first($list)
131+
```
132+
133+
#### list.flatten()
134+
135+
```scss
136+
list.flatten($list)
137+
```
138+
139+
#### list.from()
140+
141+
```scss
142+
list.from($list, $from) // TODO
143+
```
144+
145+
#### list.has()
146+
147+
```scss
148+
list.has($list, $occurrence: any, $operator: '==', $value, $values...) // TODO
149+
```
150+
151+
#### list.index()
152+
153+
```scss
154+
list.index($list, $value, $values...)
155+
```
156+
157+
#### list.insert-nth()
158+
159+
```scss
160+
list.insert-nth($list, $n, $value)
161+
```
162+
163+
#### list.invert()
164+
165+
```scss
166+
list.invert($list)
167+
```
168+
169+
#### list.is-length()
170+
171+
```scss
172+
list.is-length($list, $length)
173+
```
174+
175+
#### list.join()
176+
177+
```scss
178+
list.join(
179+
$list1,
180+
$list2,
181+
$separator: auto,
182+
$bracketed: auto,
183+
$delimiter: null
184+
)
185+
```
186+
187+
#### list.last()
188+
189+
```scss
190+
list.last($list)
191+
```
192+
193+
#### list.limit()
194+
195+
```scss
196+
list.limit($list, $limit...)
197+
```
198+
199+
#### list.merge()
200+
201+
```scss
202+
list.merge($list1, $list2)
203+
```
204+
205+
#### list.nth()
206+
207+
```scss
208+
list.nth($list, $n, $nts...)
209+
```
210+
211+
#### list.nths()
212+
213+
```scss
214+
list.nths($list, $n...)
215+
```
216+
217+
#### list.of()
218+
219+
```scss
220+
list.of($list, $spec, $separator: null, $type: false)
221+
```
222+
223+
#### list.range()
224+
225+
```scss
226+
list.range($list, $from: 1, $to: list.length($list))
227+
```
228+
229+
#### list.replace()
230+
231+
```scss
232+
list.replace($list, $replace, $replacement)
233+
```
234+
235+
#### list.select()
236+
237+
```scss
238+
list.select(
239+
$select: index,
240+
$from: null,
241+
$operand: value,
242+
$operator: '==',
243+
$value,
244+
$values...
245+
)
246+
```
247+
248+
#### list.swap()
249+
250+
```scss
251+
list.swap($list, $n, $to, $nth: list.nth($list, $n))
252+
```
253+
254+
#### list.to-map()
255+
256+
```scss
257+
list.to-map($list, $keys...)
258+
```
259+
260+
#### list.to()
261+
262+
```scss
263+
list.to($list, $to)
264+
```
265+
266+
#### list.type()
267+
268+
```scss
269+
list.type($list, $n...)
270+
```
271+
272+
#### list.update()
273+
274+
```scss
275+
list.update($list, $nth-value...)
276+
```
277+
97278
#### list.get-[method]
98279

280+
Get methods.
281+
99282
#### list.get-bool()
100283

101284
```scss
@@ -134,6 +317,8 @@ list.get-type($list, $occurrence: any, $type, $types...)
134317

135318
### list.remove-[method]
136319

320+
Remove methods.
321+
137322
#### list.remove-duplicate()
138323

139324
```scss

0 commit comments

Comments
 (0)