# Empty --- Container type can be null ```text %empty ``` ## Use with `Option` Union ```text make_array : ([yes] ? yes { `some Array $ (1; 2; 3) `nome } ) v : make_array(...) // %empty Array[I64] $ .none OR %empty Array[I64] $ (.some : (1; 2; 3)) # v { .some {[x] `log x } // Array[I64] $ (1; 2; 3) .none { ... } } // same as above ? v {[x] `log x } // Array[I64] $ (1; 2; 3) ```