Created
February 2, 2020 07:13
-
-
Save tverlaan/fbc75f0c15db54708d2f86ec88a8a6e0 to your computer and use it in GitHub Desktop.
fuzzy elixir function documentation search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex> z foo | |
No function like 'foo' was found | |
iex> z into | |
Did you mean one of? | |
Collectable.BitString.into() | |
Collectable.File.Stream.into() | |
Collectable.HashDict.into() | |
Collectable.HashSet.into() | |
Collectable.IO.Stream.into() | |
Collectable.List.into() | |
Collectable.Map.into() | |
Collectable.MapSet.into() | |
Enum.into() | |
Stream.into() | |
iex> z recompile | |
def recompile(regex) | |
@spec recompile(t()) :: t() | |
since: 1.4.0 | |
Recompiles the existing regular expression if necessary. | |
This checks the version stored in the regular expression and recompiles the | |
regex in case of version mismatch. | |
iex> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More or less results?