save-unsafe ( collection assoc -- ) (original) (raw)

save-unsafe ( collection assoc -- )

Vocabulary
mongodb.driver

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 ;

IN: mongodb.driver

: save-unsafe ( collection assoc -- )
[ check-collection ] dip send-message ;