From 82096b5cf50f538eef48c15f6650047ff8f97bff Mon Sep 17 00:00:00 2001 From: David Herberth Date: Thu, 17 Dec 2015 22:16:50 +0100 Subject: [PATCH] RandomSample.front was not documented The documentation of std.random.RandomSample shows all range primitives except .front --- std/random.d | 1 + 1 file changed, 1 insertion(+) diff --git a/std/random.d b/std/random.d index 91fe536d2..33b17ce14 100644 --- a/std/random.d +++ b/std/random.d @@ -2438,6 +2438,7 @@ struct RandomSample(Range, UniformRNG = void) return _toSelect == 0; } +/// Ditto @property auto ref front() { assert(!empty);