ExCompatible v0.1.0 ExCompatible View Source

ExCompatible strives to make your Elixir code compatible with as many Elixir versions as possible, while reducing the number of compiler warnings.

Link to this section Summary

Functions

Ensures the given expression will be compatible across all Elixir versions

Link to this section Functions

Ensures the given expression will be compatible across all Elixir versions.

Examples

safe(String.to_char_list("Hello"))

safe do
  String.to_char_list("Hello")
end