Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions std/meta.d
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ if (args.length >= 1)
}

/**
* Returns a typetuple created from TList with the first occurrence,
* Returns an `AliasSeq` created from TList with the first occurrence,
* if any, of T removed.
*/
template Erase(T, TList...)
Expand Down Expand Up @@ -401,7 +401,7 @@ if (args.length >= 1)


/**
* Returns a typetuple created from TList with the all occurrences,
* Returns an `AliasSeq` created from TList with the all occurrences,
* if any, of T removed.
*/
template EraseAll(T, TList...)
Expand Down Expand Up @@ -464,7 +464,7 @@ if (args.length >= 1)


/**
* Returns a typetuple created from TList with the all duplicate
* Returns an `AliasSeq` created from TList with the all duplicate
* types removed.
*/
template NoDuplicates(TList...)
Expand Down Expand Up @@ -523,7 +523,7 @@ template NoDuplicates(TList...)


/**
* Returns a typetuple created from TList with the first occurrence
* Returns an `AliasSeq` created from TList with the first occurrence
* of type T, if found, replaced with type U.
*/
template Replace(T, U, TList...)
Expand Down Expand Up @@ -603,7 +603,7 @@ if (args.length >= 2)
}

/**
* Returns a typetuple created from TList with all occurrences
* Returns an `AliasSeq` created from TList with all occurrences
* of type T, if found, replaced with type U.
*/
template ReplaceAll(T, U, TList...)
Expand Down Expand Up @@ -683,7 +683,7 @@ if (args.length >= 2)
}

/**
* Returns a typetuple created from TList with the order reversed.
* Returns an `AliasSeq` created from TList with the order reversed.
*/
template Reverse(TList...)
{
Expand Down Expand Up @@ -736,7 +736,7 @@ template MostDerived(T, TList...)
}

/**
* Returns the typetuple TList with the types sorted so that the most
* Returns the `AliasSeq` TList with the types sorted so that the most
* derived types come first.
*/
template DerivedToFront(TList...)
Expand Down