@@ -112,10 +112,6 @@ Find the index of the element for which `predicate` returns true. If there is no
112112
113113A collector for converting an iterator into an array.
114114
115- ### function ` iter(array) `
116-
117- Create an iterator from array ` array ` .
118-
119115### function ` length(array) `
120116
121117Get the length of array ` array ` .
@@ -184,10 +180,6 @@ Insert `value` at the front of `list`
184180
185181Get the length of the list.
186182
187- ### function ` iter(list) `
188-
189- Create an iterator over ` list ` .
190-
191183### function ` new() `
192184
193185Create a new, empty linked list.
@@ -393,9 +385,9 @@ Create an iterator that counts from 0 to `to`.
393385
394386Create an iterator that counts up from ` n ` indefinitely.
395387
396- ### struct ` collector `
388+ ### trait ` Collector `
397389
398- An struct defining the required functions to convert an iterator into an arbitrary collection.
390+ A trait for converting an iterator into an arbitrary collection.
399391
400392### object ` STOP `
401393
@@ -476,10 +468,6 @@ Create an empty arraylist with default initial capacity.
476468
477469Create an empty arraylist with the given initial capacity.
478470
479- ### function ` iter(list) `
480-
481- Create an iterator over arraylist ` list ` .
482-
483471### function ` from_array(len, array) `
484472
485473Create a new arraylist from ` array ` . The ` len ` argument should be the length
@@ -518,10 +506,6 @@ Set the value of `key` in `list` to `value`.
518506A collector for converting an iterator of
519507entries into an assoclist.
520508
521- ### function ` iter(list) `
522-
523- Create an iterator over the entries of ` list ` .
524-
525509### function ` length `
526510
527511Check the number of items in the list.
@@ -534,10 +518,6 @@ Create an empty assoclist.
534518
535519A compact byte array type.
536520
537- ### function ` iter(bytes) `
538-
539- Create an iterator over ` bytes ` .
540-
541521### object ` collector `
542522
543523A collector for converting an iterator into byte array.
@@ -711,10 +691,6 @@ Parse `str` as an integer of base `base`. Currently only works for base 10.
711691A collector to convert an iterator of characters
712692or strings into a string.
713693
714- ### function ` iter(str) `
715-
716- Create an iterator over the characters in ` str ` .
717-
718694### function ` from_bytes(bytes) `
719695
720696Convert a byte array to a string.
@@ -884,10 +860,6 @@ Get an iterator over the keys in `map`.
884860
885861Return the number of values in ` map ` .
886862
887- ### function ` iter(map) `
888-
889- Get an iterator over the key-value pairs in ` map ` .
890-
891863### function ` entries(map) `
892864
893865Get an iterator over the key-value pairs in ` map ` .
0 commit comments