ESP-IDF
ot::Spinel::SpinelDriver::Array
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Spinel::SpinelDriver::Array
ot::Spinel::SpinelDriver::Array
Syntax
Show:
Summary
Declaration
from
spinel_driver.hpp:231
class
Array
{
static_assert
(
kMaxSize
!=
0
,
"Array `kMaxSize` cannot be zero"
)
;
public
:
Array
(
void
)
:
mLength
(
0
)
{
}
uint16_t
GetMaxSize
(
void
)
const
{
return
kMaxSize
;
}
bool
IsFull
(
void
)
const
{
return
(
mLength
==
GetMaxSize
(
)
)
;
}
otError
PushBack
(
const
Type
&
aEntry
)
{
return
IsFull
(
)
?
OT_ERROR_NO_BUFS
:
(
mElements
[
mLength
++
]
=
aEntry
,
OT_ERROR_NONE
)
;
}
const
Type
*
Find
(
const
Type
&
aEntry
)
const
{
const
Type
*
matched
=
nullptr
;
for
(
const
Type
&
element
:
*
this
)
{
if
(
element
==
aEntry
)
{
matched
=
&
element
;
break
;
}
}
return
matched
;
}
bool
Contains
(
const
Type
&
aEntry
)
const
{
return
Find
(
aEntry
)
!=
nullptr
;
}
Type
*
begin
(
void
)
{
return
&
mElements
[
0
]
;
}
Type
*
end
(
void
)
{
return
&
mElements
[
mLength
]
;
}
const
Type
*
begin
(
void
)
const
{
return
&
mElements
[
0
]
;
}
const
Type
*
end
(
void
)
const
{
return
&
mElements
[
mLength
]
;
}
private
:
Type
mElements
[
kMaxSize
]
;
uint16_t
mLength
;
}
;
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out