save-unsafe ( collection assoc -- ) (original) (raw)
save-unsafe ( collection assoc -- )
Inputs
collection | a collection |
---|---|
assoc | object |
Outputs
None
Word description
Save the object to the given collection without automatic error check
Definition
USING: kernel mongodb.connection mongodb.driver.private
mongodb.msg ;
: save-unsafe ( collection assoc -- )
[ check-collection ] dip send-message ;