mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
Move some deprecations along.
This commit is contained in:
parent
e8ebd82eab
commit
8ef2b195f1
1 changed files with 0 additions and 24 deletions
|
@ -5098,30 +5098,6 @@ if (isRandomAccessRange!Range && hasLength!Range)
|
|||
private Range _r;
|
||||
private bool _empty;
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Use front()")
|
||||
@property size_t[] indices() pure nothrow @nogc @safe { return _indices; }
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Don't set it manually")
|
||||
@property void indices(size_t[] indices) pure nothrow @nogc @safe { _indices = indices; }
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Use front()")
|
||||
@property size_t[] state() pure nothrow @nogc @safe { return _state; }
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Don't set it manually")
|
||||
@property void state(size_t[] state) pure nothrow @nogc @safe { state = state; }
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Access will be forbidden.")
|
||||
@property Range r() pure nothrow @nogc @safe { return _r; }
|
||||
|
||||
// Explicitly undocumented. It will be removed in June 2017. @@@DEPRECATED_2017-06@@@
|
||||
deprecated("Private variable. Don't set it manually")
|
||||
@property void r(Range r) pure nothrow @nogc @safe { _r = r; }
|
||||
|
||||
///
|
||||
this(Range r)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue