# Empty --- Container type can be null ## 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) ```