pub trait ArrLength { const LEN: usize; }
Get the length of constant sized arrays.
use ergo_lib::ArrLength; type SecretKeyBytes = [u8; 32]; assert_eq!(32, SecretKeyBytes::LEN)
Length of the array