Skip to content

Latest commit

Β 

History

History
44 lines (22 loc) Β· 911 Bytes

after_bind.md

File metadata and controls

44 lines (22 loc) Β· 911 Bytes

View this file with results and syntax highlighting here.

Left Multimap (⟜)

π”½βŸœπ•˜ 𝕩: Bind

β†’full documentation

Supply π•˜ as a right argument to 𝔽 (𝕩 𝔽 π•˜).

π•˜ is a constant, 𝔽 must be dyadic.

    -⟜3 9

    - 3 9

    9 - 3

π”½βŸœπ”Ύ 𝕩: After

β†’full documentation

Apply 𝔾 to 𝕩, and supply it as a right argument to 𝔽 (𝕩 𝔽 (𝔾 𝕩)).

𝔽 must be dyadic, 𝔾 must be monadic.

    Γ—βŸœ- 9

    Γ— - 9

    9 Γ— (- 9)

𝕨 π”½βŸœπ”Ύ 𝕩: Dyadic After

β†’full documentation

Apply 𝔾 to 𝕩, and supply it as a right argument to 𝔽 (𝕨 𝔽 (𝔾 𝕩)).

𝔽 must be dyadic, 𝔾 must be monadic.

    2 Γ—βŸœ- 1

    2 Γ— (- 1)