Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/doc/efficiency_guide/maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function is:
`maps:filter/2` is implemented in Erlang. It creates a new map using
`maps:from_list/1`. If it is known that only a minority of the values will be
removed, it can be more efficient to avoid `maps:filter/2` and write a function
that will use [maps:remove/3](`maps:remove/2`) to remove the unwanted values.
that will use [maps:remove/2](`maps:remove/2`) to remove the unwanted values.

### maps:filtermap/2

Expand Down
Loading