1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
//! Module for counting primitive.
//!
//! Counting primitives are able to return the information
//! about amount of elements they contain.
/// Represents default counting logic, by providing ability
/// to return length of the object as specified (associated) type
/// or answer the question is the object empty.
/// Represents default counting logic, by providing ability
/// to return length of the object as specified (associated) type
/// or answer the question is the object empty, by provided key of
/// specified (associated) type.
///
/// Should be implemented on double map based types.