summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-08-24 09:01:59 +0200
committerEugen Wissner <belka@caraus.de>2025-08-24 09:01:59 +0200
commit1857d59375b3fc6d434f7a028143102d0e29ed34 (patch)
treef6d8e4e4fc811d9cd3d60d5e5992c035a8e137fc /meta
parent6072bfab6818eb038d31491c53bde1092cf1b70d (diff)
downloadtanya-1857d59375b3fc6d434f7a028143102d0e29ed34.tar.gz
Update copyrights to 2025
Diffstat (limited to 'meta')
-rw-r--r--meta/tanya/meta/metafunction.d10
-rw-r--r--meta/tanya/meta/package.d2
-rw-r--r--meta/tanya/meta/trait.d2
-rw-r--r--meta/tanya/meta/transform.d2
4 files changed, 8 insertions, 8 deletions
diff --git a/meta/tanya/meta/metafunction.d b/meta/tanya/meta/metafunction.d
index eaa5111..eeb0d56 100644
--- a/meta/tanya/meta/metafunction.d
+++ b/meta/tanya/meta/metafunction.d
@@ -9,7 +9,7 @@
* It contains different algorithms for iterating, searching and modifying
* template arguments.
*
- * Copyright: Eugene Wissner 2017-2020.
+ * Copyright: Eugene Wissner 2017-2025.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
@@ -34,7 +34,7 @@ import tanya.meta.transform;
* $(D_INLINECODE Args[0] < Args[1]), a positive number that
* $(D_INLINECODE Args[0] > Args[1]), `0` if they equal.)
* )
- *
+ *
* Params:
* pred = Template predicate.
* Args = Elements for which you want to find the minimum value.
@@ -81,7 +81,7 @@ if (Args.length > 0 && __traits(isTemplate, pred))
* $(D_INLINECODE Args[0] < Args[1]), a positive number that
* $(D_INLINECODE Args[0] > Args[1]), `0` if they equal.)
* )
- *
+ *
* Params:
* pred = Template predicate.
* Args = Elements for which you want to find the maximum value.
@@ -792,7 +792,7 @@ alias AliasSeq(Args...) = Args;
* so $(D_INLINECODE F!([0]) && F!([1])) and so on, can be called.
*
* Params:
- * F = Template predicate.
+ * F = Template predicate.
* L = List of items to test.
*
* Returns: $(D_KEYWORD true) if all the items of $(D_PARAM L) satisfy
@@ -815,7 +815,7 @@ enum bool allSatisfy(alias F, L...) = Filter!(templateNot!F, L).length == 0;
* so $(D_INLINECODE F!([0]) && F!([1])) and so on, can be called.
*
* Params:
- * F = Template predicate.
+ * F = Template predicate.
* L = List of items to test.
*
* Returns: $(D_KEYWORD true) if any of the items of $(D_PARAM L) satisfy
diff --git a/meta/tanya/meta/package.d b/meta/tanya/meta/package.d
index 377626d..d962b12 100644
--- a/meta/tanya/meta/package.d
+++ b/meta/tanya/meta/package.d
@@ -9,7 +9,7 @@
* to transform from one type to another. It has also different algorithms for
* iterating, searching and modifying template arguments.
*
- * Copyright: Eugene Wissner 2017-2020.
+ * Copyright: Eugene Wissner 2017-2025.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/meta/tanya/meta/trait.d b/meta/tanya/meta/trait.d
index 2d81a9e..b91d673 100644
--- a/meta/tanya/meta/trait.d
+++ b/meta/tanya/meta/trait.d
@@ -8,7 +8,7 @@
* Templates in this module are used to obtain type information at compile
* time.
*
- * Copyright: Eugene Wissner 2017-2020.
+ * Copyright: Eugene Wissner 2017-2025.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/meta/tanya/meta/transform.d b/meta/tanya/meta/transform.d
index 08b1b34..2bef67f 100644
--- a/meta/tanya/meta/transform.d
+++ b/meta/tanya/meta/transform.d
@@ -9,7 +9,7 @@
* types. They take some type as argument and return a different type after
* perfoming the specified transformation.
*
- * Copyright: Eugene Wissner 2017-2020.
+ * Copyright: Eugene Wissner 2017-2025.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)