// queue:    inserts and removes happen at opposite ends
// inslast:  elements flow from "last", "tail" or "back", to "first," "head" or "front"
// allhead:  inserts and removes happen via the api-provided "last"/"tail"/"back"/"first"/"tail"/"front"

#define BOP_INSERT(lst, lastInsIter, item)  BFX_INSERT_LAST(B_UserItem, lst, (item))
#define BOP_REMOVE(lst, remIter)        BFX_REMOVE_FIRST(B_UserItem, lst)
#define BOP_SWITCH_REMDIR(fwd, rev)         fwd