mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
Style fixes.
This commit is contained in:
parent
370f14af6d
commit
cd42a6a81f
1 changed files with 3 additions and 2 deletions
|
@ -7956,7 +7956,8 @@ if (isRandomAccessRange!Range && hasLength!Range)
|
||||||
|
|
||||||
next(2);
|
next(2);
|
||||||
}
|
}
|
||||||
static if (isForwardRange!Range) {
|
static if (isForwardRange!Range)
|
||||||
|
{
|
||||||
///
|
///
|
||||||
auto save()
|
auto save()
|
||||||
{
|
{
|
||||||
|
@ -7981,7 +7982,7 @@ if (isRandomAccessRange!Range && hasLength!Range)
|
||||||
|
|
||||||
@safe unittest
|
@safe unittest
|
||||||
{
|
{
|
||||||
import std.algorithm : equal;
|
import std.algorithm.comparison : equal;
|
||||||
import std.range : ElementType;
|
import std.range : ElementType;
|
||||||
import std.array : array;
|
import std.array : array;
|
||||||
auto p = [1, 2, 3].permutations;
|
auto p = [1, 2, 3].permutations;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue