In Yao, the `zero_state` function supports an optional parameter `nbatch`, whereas `FLOYao.zero_state` does not (see example below). ``` using Yao using FLOYao nbatch = 10 yao_reg = zero_state(4; nbatch) floyao_reg = FLOYao.zero_state(4; nbatch) ``` Is there a way to implement the nbatch in FLOYao?