Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoFelipe3 committed Oct 6, 2024
1 parent fae49fa commit f9cffb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/primitive/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,9 @@ impl Primitive {
use Primitive::*;
Some(match self {
prim if prim.class() == PrimClass::DyadicPervasive => Signature::new(1, 1),
Select | Pick | Take | Drop | Join | Rerank | Rotate | Orient | Windows | Base => Signature::new(1, 1),
Select | Pick | Take | Drop | Join | Rerank | Rotate | Orient | Windows | Base => {
Signature::new(1, 1)
}
Couple | Box => Signature::new(n, 1),
Transpose | Sqrt | Round | Floor | Ceil | Rand | Utf8 => return self.signature(),
_ => return None,
Expand Down

0 comments on commit f9cffb8

Please sign in to comment.