From be5f450dbf10b80ed565d01f0ede80968940e18b Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sat, 18 Apr 2020 23:07:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Ensure=20line=20length=20does=20?= =?UTF-8?q?not=20exceed=20120=20chars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- X10D/src/BooleanExtensions.cs | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/X10D/src/BooleanExtensions.cs b/X10D/src/BooleanExtensions.cs index abea738..54e8ac4 100644 --- a/X10D/src/BooleanExtensions.cs +++ b/X10D/src/BooleanExtensions.cs @@ -11,7 +11,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns when and are Otherwise, the output is . + /// Returns when and are + /// Otherwise, the output is . public static bool And(this bool value, bool comparison) { return value && comparison; @@ -22,7 +23,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are . Otherwise, . + /// Returns if and are + /// . Otherwise, . public static bool NAnd(this bool value, bool comparison) { return !(value && comparison); @@ -33,7 +35,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are . Otherwise, . + /// Returns if and are + /// . Otherwise, . public static bool NOr(this bool value, bool comparison) { return !(value || comparison); @@ -54,7 +57,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if or is . + /// Returns if or is + /// . public static bool Or(this bool value, bool comparison) { return value || comparison; @@ -85,7 +89,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are the same, Otherwise . + /// Returns if and are + /// the same, Otherwise . public static bool XNOr(this bool value, bool comparison) { return !(value ^ comparison); @@ -96,7 +101,9 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are or if and are . + /// Returns if and are + /// or if and are + /// . public static bool XOr(this bool value, bool comparison) { return value ^ comparison;