Skip to content
Snippets Groups Projects

Misc. improvements

Merged rarbore2 requested to merge misc into main
4 files
+ 144
4
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 8
0
@@ -659,6 +659,14 @@ impl Type {
@@ -659,6 +659,14 @@ impl Type {
self.is_bool() || self.is_fixed() || self.is_float()
self.is_bool() || self.is_fixed() || self.is_float()
}
}
 
pub fn is_product(&self) -> bool {
 
if let Type::Product(_) = self {
 
true
 
} else {
 
false
 
}
 
}
 
pub fn is_array(&self) -> bool {
pub fn is_array(&self) -> bool {
if let Type::Array(_, _) = self {
if let Type::Array(_, _) = self {
true
true
Loading