Remove code deprecated in 0.11.2 and earlier

- conv.to!String
- meta.metafunction.Tuple
- range.adapter.take
- range.adapter.takeExactly
- range.primitive: put()-ting input range into an output one
This commit is contained in:
2018-09-29 09:00:43 +02:00
parent c5eb2f27be
commit e68fcc3a38
4 changed files with 17 additions and 281 deletions

View File

@ -856,13 +856,6 @@ if (is(Unqual!From == bool) && isNumeric!To && !is(Unqual!To == Unqual!From))
assert(false.to!int == 0);
}
deprecated("Use tanya.format.format instead")
To to(To, From)(auto ref From from)
if (is(Unqual!To == String))
{
return format!"{}"(from);
}
/**
* Converts a stringish range to an integral value.
*