nimble_step_map/lib.rs
1/*
2 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/nimble
3 * Licensed under the MIT License. See LICENSE in the project root for license information.
4 */
5use nimble_participant::ParticipantId;
6use seq_map::SeqMap;
7
8pub type StepMap<StepT> = SeqMap<ParticipantId, StepT>;