Quick - " - Vectorize / Zip With

Characters: "

Tags: hyper , vectorize

Arity: dyadic

The resulting link is dyadic, meaning it takes two arguments. Note that the arity refers to that of the resulting link, not the number of links this quick consumes.

Functionality

Vectorize a dyad by one level (call between pairs of the left and right arguments).

Details

1 ÷" 1,2,3 is [1 ÷ 1, 1 ÷ 2, 1 ÷ 3]. 1,2,3 ÷" 1 is [1 ÷ 1, 2 ÷ 1, 3 ÷ 1]. 1,2,3 ÷ 4,5,6 is [1 ÷ 4, 2 ÷ 5, 3 ÷ 6]. If one side is longer, trailing arguments are appended, so 1,2 ÷ 3,4,5 is [1 ÷ 3, 2 ÷ 4, 5]. If both sides are flat values, this quick has no effect.

Syntax
  • <dyad>" - vectorize by one level