aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/string.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2018-03-27 14:57:17 +0200
committerDan Gudmundsson <[email protected]>2018-03-27 14:57:17 +0200
commit05cf376180ba1f70c9788b145b6c5ad5751a982d (patch)
treef725854c582c254b0eea0e67f97b30ddf3510ac6 /lib/stdlib/src/string.erl
parente176b62e96e4452443b5be347fb7b97a561c5b3b (diff)
parent20f9ac424718170299febebb384c4d08b1f8cf52 (diff)
downloadotp-05cf376180ba1f70c9788b145b6c5ad5751a982d.tar.gz
otp-05cf376180ba1f70c9788b145b6c5ad5751a982d.tar.bz2
otp-05cf376180ba1f70c9788b145b6c5ad5751a982d.zip
Merge branch 'dgud/revert-string-depr'
* dgud/revert-string-depr: Revert "Deprecate old string functions"
Diffstat (limited to 'lib/stdlib/src/string.erl')
-rw-r--r--lib/stdlib/src/string.erl10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/stdlib/src/string.erl b/lib/stdlib/src/string.erl
index 4e89819e41..0736374f21 100644
--- a/lib/stdlib/src/string.erl
+++ b/lib/stdlib/src/string.erl
@@ -88,16 +88,6 @@
%%% May be removed
-export([list_to_float/1, list_to_integer/1]).
--deprecated([{len,1},{concat,2},
- {str,2},{chr,2},{rchr,2},{rstr,2},
- {span,2},{cspan,2},{substr,'_'},{tokens,2},
- {chars,'_'},
- {copies,2},{words,'_'},{strip,'_'},
- {sub_word,'_'},{left,'_'},{right,'_'},
- {sub_string,'_'},{centre,'_'},{join,2},
- {to_upper,1}, {to_lower,1}
- ]).
-
%% Uses bifs: string:list_to_float/1 and string:list_to_integer/1
-spec list_to_float(String) -> {Float, Rest} | {'error', Reason} when
String :: string(),