MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / arb_array_dimension

Function arb_array_dimension

src/repr/src/scalar.rs:5502–5509  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5500
5501#[cfg(any(test, feature = "proptest"))]
5502fn arb_array_dimension() -> BoxedStrategy<ArrayDimension> {
5503 (1..4_usize)
5504 .prop_map(|length| ArrayDimension {
5505 lower_bound: 1,
5506 length,
5507 })
5508 .boxed()
5509}
5510
5511#[derive(Debug, PartialEq, Clone)]
5512#[cfg(any(test, feature = "proptest"))]

Callers 1

arb_arrayFunction · 0.70

Calls 1

boxedMethod · 0.80

Tested by

no test coverage detected