Skip to content
Snippets Groups Projects

feature: KVCell data strcture

Merged Yaroslav Dynnikov requested to merge feature/kvcell into master

KVCell contains an optional value and provides access by key in two flavors:

fn take_or_drop(&mut self, key: &K) -> Option<T>
fn take_or_keep(&mut self, key: &K) -> Option<T>

Both return Some value only if provided key matches the contained one.

The behavior differs when the provided key doesn't match:

  • take_or_drop always leaves the cell empty. It supersedes CachedCell and copies its behavior.

  • take_or_keep retains contained value. It's a replacement for JointStateLatch.

Edited by Valentin Syrovatskiy

Merge request reports

Merge request pipeline #12127 passed

Merge request pipeline passed for 31a76282

Merged by Yaroslav DynnikovYaroslav Dynnikov 2 years ago (Sep 16, 2022 11:56am UTC)

Loading

Pipeline #12128 passed

Pipeline passed for 31a76282 on master

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
Please register or sign in to reply
Loading