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 38
38
39
39
* Backwards incompatible changes
40
40
* [ 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
41
43
42
44
43
45
# v0.13.2 (2014-05-11)
Original file line number Diff line number Diff line change @@ -1186,8 +1186,8 @@ defmodule String do
1186
1186
1187
1187
## Examples
1188
1188
1189
- iex> List.from_char_data ("æß")
1190
- {:ok, 'æß'}
1189
+ iex> String.to_char_list ("æß")
1190
+ 'æß'
1191
1191
1192
1192
Notice that this function expect a list of integer representing
1193
1193
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