Procs
func getShape(s: string; parent_shape = Metadata()): Metadata {....raises: [], tags: [], forbids: [].}
- Handle strings / avoid interpretation as openArraychar Source Edit
func getShape[T](s: openArray[T]; parent_shape = Metadata()): Metadata
- Get the shape of nested seqs/arrays Important âš : at each nesting level, only the length of the first element is used for the shape. Ensure before or after that seqs have the expected length or that the total number of elements matches the product of the dimensions. Source Edit