From 60753490c67ab97868761095e1e41765c4d7e559 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Tue, 27 Aug 2024 14:59:29 -0700
Subject: [PATCH] vectors: implement Ord stuff as vectors of boolean

---
 fixed_wide_vectors/src/macros/mod.rs | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/fixed_wide_vectors/src/macros/mod.rs b/fixed_wide_vectors/src/macros/mod.rs
index caedc1995..0d9be6538 100644
--- a/fixed_wide_vectors/src/macros/mod.rs
+++ b/fixed_wide_vectors/src/macros/mod.rs
@@ -177,6 +177,31 @@ macro_rules! impl_vector {
 	                $( $field: self.$field.max(rhs.$field) ), +
 	            }
 	        }
+	        pub fn cmp(self, rhs: Self) -> $struct<core::cmp::Ordering> {
+	        	$struct{
+	                $( $field: self.$field.cmp(&rhs.$field) ), +
+	            }
+	        }
+	        pub fn lt(self, rhs: Self) -> $struct<bool> {
+	        	$struct{
+	                $( $field: self.$field.lt(&rhs.$field) ), +
+	            }
+	        }
+	        pub fn gt(self, rhs: Self) -> $struct<bool> {
+	        	$struct{
+	                $( $field: self.$field.gt(&rhs.$field) ), +
+	            }
+	        }
+	        pub fn ge(self, rhs: Self) -> $struct<bool> {
+	        	$struct{
+	                $( $field: self.$field.ge(&rhs.$field) ), +
+	            }
+	        }
+	        pub fn le(self, rhs: Self) -> $struct<bool> {
+	        	$struct{
+	                $( $field: self.$field.le(&rhs.$field) ), +
+	            }
+	        }
         }
 
         impl<T: core::ops::Neg<Output = T>> core::ops::Neg for $struct<T> {