File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3838
3939* Backwards incompatible changes
4040 * [ Exception] Exceptions now generate structs instead of records
41+ * [ String] ` String.to_char_list/1 ` no longer returns a tuple and raises in case of failure (` String.to_char_list!/1 ` used to behave like that)
42+ * [ String] ` String.to_char_list!/1 ` is removed
4143
4244
4345# v0.13.2 (2014-05-11)
Original file line number Diff line number Diff line change @@ -1186,8 +1186,8 @@ defmodule String do
11861186
11871187 ## Examples
11881188
1189- iex> List.from_char_data ("æß")
1190- {:ok, 'æß'}
1189+ iex> String.to_char_list ("æß")
1190+ 'æß'
11911191
11921192 Notice that this function expect a list of integer representing
11931193 UTF-8 codepoints. If you have a raw binary, you must instead use
You can’t perform that action at this time.
0 commit comments