Files
mql5-skills/skills/mql5/references/docs/34-standardlibrary/2033-standardlibrary-generic-cstack-cstackcontains.md
T

21 lines
324 B
Markdown
Raw Normal View History

2026-06-23 21:47:51 +08:00
# Contains
Determines whether a stack contains an element with the specified value.
```
bool Contains(
   T  item     // the search value
   );
```
Parameters
item
[in]  The searched value.
Return Value
Returns true if an element with the specified value is found in the stack, or false otherwise.