File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -51,13 +51,17 @@ Specifics:
51
51
+-------------/ +---+
52
52
53
53
/-------------+ +---+---+
54
- | 0b0000`0001 |--->| 1 | 7 |
54
+ | 0b1111`1111 |--->| 0 | 8 |
55
55
+-------------/ +---+---+
56
56
57
57
/-------------+ +---+---+---+
58
- | 0b1000`0011 |--->| 2 | 5 | 1 |
58
+ | 0b0000`0001 |--->| 0 | 1 | 7 |
59
59
+-------------/ +---+---+---+
60
60
61
+ /-------------+ +---+---+---+---+
62
+ | 0b1000`0011 |--->| 0 | 2 | 5 | 1 |
63
+ +-------------/ +---+---+---+---+
64
+
61
65
/-------------+ +---+---+---+---+
62
66
| 0b1100`1110 |--->| 1 | 3 | 2 | 2 |
63
67
+-------------/ +---+---+---+---+
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ callback:
190
190
cib::service<my_service>->handle(my_message{"my_field"_field = 0x81});
191
191
----
192
192
193
- NOTE: Because message view types are implicitly constructable from an owning
193
+ NOTE: Because message view types are implicitly constructible from an owning
194
194
message type, or from an appropriate `std::array`, it is possible to set up a
195
195
service and handler that works with "raw data" in the form of a `std::array`,
196
196
but whose callbacks and matchers take the appropriate message view types.
@@ -438,7 +438,7 @@ as follows:
438
438
- `and` together all the resulting bitsets (i.e. perform their set intersection).
439
439
440
440
This gives us the callbacks to be called. Each callback still has an associated
441
- mpmatcher that may include field constraints that were already handled by the
441
+ matcher that may include field constraints that were already handled by the
442
442
indexing, but may also include constraints on fields that were not indexed. With
443
443
a little xref:match.adoc#_boolean_algebra_with_matchers[Boolean matcher
444
444
manipulation], we can remove the fields that were indexed by setting them to
You can’t perform that action at this time.
0 commit comments