Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
🚀 Try FlipJump in your browser: fj.tomhe.app
FlipJump
FlipJump
  • Getting Started
    • Installation
    • Hello, World!
    • Anatomy of a FlipJump program
  • Language Reference
    • The FlipJump Instruction
    • Lexical Structure
    • Expressions
    • Macros
    • Namespaces
    • Directives
    • Types and built-in names
    • Input / Output
    • Complexity notation
  • Standard Library
    • runlib.fj
    • casting.fj
    • ptrlib.fj
    • bit/memory.fj
    • bit/logics.fj
    • bit/cond_jumps.fj
    • bit/shifts.fj
    • bit/math.fj
    • bit/input.fj
    • bit/output.fj
    • bit/casting.fj
    • bit/pointers.fj
    • bit/mul.fj
    • bit/div.fj
    • hex/memory.fj
    • hex/logics.fj
    • hex/math.fj
    • hex/math_basic.fj
    • hex/shifts.fj
    • hex/cond_jumps.fj
    • hex/tables_init.fj
    • hex/input.fj
    • hex/output.fj
    • hex/mul.fj
    • hex/div.fj
    • hex/pointers/basic_pointers.fj
    • hex/pointers/xor_to_pointer.fj
    • hex/pointers/xor_from_pointer.fj
    • hex/pointers/read_pointers.fj
    • hex/pointers/write_pointers.fj
    • hex/pointers/stack.fj
    • hex/pointers/pointer_arithmetics.fj
  • Examples
    • Hello World
    • Prime Sieve
    • Calculator
    • Quine
  • Companion tools and resources
    • FlipJump IDE — fj.tomhe.app
    • c2fj — C to FlipJump
    • bf2fj — Brainfuck to FlipJump
Back to top
View this page
Edit this page

hex.if (arity 3)¶

if hex==0 goto l0, else goto l1.

Signature¶

def if hex, l0, l1 { ... }

Defined in hex/cond_jumps.fj — lines 31–33 (view on GitHub).

Complexity¶

  • Time: @-1

  • Space: @+15

See the complexity glossary for what @, w, dw, dbit, n mean.

Depends on¶

  • hex.if_flags

Used by¶

  • hex.if/4

  • hex.if0/2

  • hex.if1/2

Copyright © 2026, Tom Herman
Made with Sphinx and @pradyunsg's Furo
On this page
  • hex.if (arity 3)
    • Signature
    • Complexity
    • Depends on
    • Used by