mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 13:10:35 +03:00
XREF -> REF (sed)
Done by: (find . -type f -name "*.d" -print0; \ find . -type f -name "*.dd" -print0) | \ xargs -0 sed -i -r \ 's/\$\(XREF\s+([^(),]*),\s*([^(),]*)\)/$(REF \2, std,\1)/g'
This commit is contained in:
parent
a207b27056
commit
764caefa36
37 changed files with 167 additions and 167 deletions
|
@ -161,7 +161,7 @@ public struct UUID
|
|||
* possible to read, compare and use all these Variants, but
|
||||
* UUIDs generated by this module will always be in rfc4122 format.
|
||||
*
|
||||
* Note: Do not confuse this with $(XREF _variant, _Variant).
|
||||
* Note: Do not confuse this with $(REF _Variant, std,_variant).
|
||||
*/
|
||||
enum Variant
|
||||
{
|
||||
|
@ -518,7 +518,7 @@ public struct UUID
|
|||
* RFC 4122 defines different internal data layouts for UUIDs.
|
||||
* Returns the format used by this UUID.
|
||||
*
|
||||
* Note: Do not confuse this with $(XREF _variant, _Variant).
|
||||
* Note: Do not confuse this with $(REF _Variant, std,_variant).
|
||||
* The type of this property is $(MYREF3 std.uuid.UUID.Variant, _Variant).
|
||||
*
|
||||
* See_Also:
|
||||
|
@ -1208,7 +1208,7 @@ unittest
|
|||
/**
|
||||
* Params:
|
||||
* randomGen = uniform RNG
|
||||
* See_Also: $(XREF random, isUniformRNG)
|
||||
* See_Also: $(REF isUniformRNG, std,random)
|
||||
*/
|
||||
UUID randomUUID(RNG)(ref RNG randomGen)
|
||||
if (isInputRange!RNG && isIntegral!(ElementType!RNG))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue