Skip to content

Commit

Permalink
Cross-reference among from canFind.
Browse files Browse the repository at this point in the history
For newbies' ease of discovering the right function to use (issue 13467).
  • Loading branch information
H. S. Teoh committed Sep 18, 2014
1 parent 0fb1bee commit 0b6bfd5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion std/algorithm.d
Expand Up @@ -11477,6 +11477,9 @@ unittest
/++
Convenience function. Like find, but only returns whether or not the search
was successful.
See_Also:
$(XREF algorithm, among) for checking a range against multiple possibilities.
+/
template canFind(alias pred="a == b")
{
Expand Down Expand Up @@ -13718,7 +13721,8 @@ is not _among $(D values). The predicate $(D pred) is used to
compare values, and uses equality by default.
See_Also:
$(XREF algorithm, find) for finding a value in a range.
$(XREF algorithm, find) and $(XREF algorithm, canFind) for finding a value in a
range.
*/
uint among(alias pred = (a, b) => a == b, Value, Values...)
(Value value, Values values)
Expand Down

0 comments on commit 0b6bfd5

Please sign in to comment.