alias can not be deprecated :-(
What about:
static import std.algorithm : startsWith, endsWith, cmp, count;
static import std.array : join, split;
deprecated {
alias startsWith = std.algorithm.startsWith;
...
}
Ilya Yaroshenko via Digitalmars-d Thu, 13 Nov 2014 11:31:29 -0800
alias can not be deprecated :-(
What about:
static import std.algorithm : startsWith, endsWith, cmp, count;
static import std.array : join, split;
deprecated {
alias startsWith = std.algorithm.startsWith;
...
}