From 2066bd7701e8164803c14b35aa64df4be6a0069f Mon Sep 17 00:00:00 2001 From: Behrang Shafei <50267830+bertiqwerty@users.noreply.github.com> Date: Sat, 11 May 2024 19:06:42 +0200 Subject: [PATCH] why 11? 4. --- src/value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value.rs b/src/value.rs index cf7a4ab..37dd20e 100644 --- a/src/value.rs +++ b/src/value.rs @@ -8,7 +8,7 @@ use crate::{ result::to_ex, BinOp, ExError, ExResult, Express, FlatEx, MakeOperators, Operator, }; -pub type ArrayType = SmallVec<[F; 11]>; +pub type ArrayType = SmallVec<[F; 4]>; /// *`feature = "value"`* - /// The value type [`Val`](Val) can contain an integer, float, bool, a vector of floats, none, or error.