Function sp_database::with_get[][src]

pub fn with_get<R, H: Clone>(
    db: &dyn Database<H>,
    col: ColumnId,
    key: &[u8],
    mut f: impl FnMut(&[u8]) -> R
) -> Option<R>

Call f with the value previously stored against key and return the result, or None if key is not currently in the database.

This may be faster than get since it doesn't allocate.