@@ -48,7 +48,7 @@ Type Names
4848 using TcpipEventManager = ::os::EventManager<task_tcpip>;
4949
5050 Any exceptions to this rule need to have a reasonable justification and in that
51- case should be applied consistently within a module (e.g. ``estd `` types use
51+ case should be applied consistently within a module (e.g. ``etl `` types use
5252*snake_case * notation in order to match with their STL counterpart). In general
5353those exceptions should be rare!
5454
@@ -184,7 +184,7 @@ does not provide any functions, you can omit the prefix.
184184
185185 class CanTransceiver // good
186186 {
187- ::estd::forward_list <ICanFrameListener> _listeners;
187+ ::etl::intrusive_forward_list <ICanFrameListener, ::etl::forward_link<0> > _listeners;
188188 };
189189
190190 struct Result // good
@@ -196,7 +196,7 @@ does not provide any functions, you can omit the prefix.
196196
197197 class CanTransceiver // bad, no member prefix
198198 {
199- ::estd::forward_list <ICanFrameListener> listeners;
199+ ::etl::intrusive_forward_list <ICanFrameListener, ::etl::forward_link<0> > listeners;
200200 };
201201
202202 struct Result // bad, suffix and mixed style
@@ -316,7 +316,7 @@ Boolean Variables and Functions
316316 - might need conversion if propagated to higher levels
317317
318318 Other rarely used types are `bitfields ` and `ranges `. For return values of functions it is
319- worth to look at ``::estd::result `` class which combines data and error status in one object.
319+ worth to look at ``::etl::expected `` class which combines data and error status in one object.
320320
321321 In most cases using a boolean is the best choice to keep it simple.
322322
@@ -328,7 +328,7 @@ type of the variable and the operations that can be performed on its elements.
328328
329329.. code-block :: cpp
330330
331- using ReceiverList = ::estd::forward_list <Receiver>;
331+ using ReceiverList = ::etl::intrusive_forward_list <Receiver, ::etl::forward_link<0> >;
332332
333333 vector<Point> points;
334334 int values[];
0 commit comments