Struct StringInt::Elem

Nested Relationships

This struct is a nested type of Class StringInt.

Struct Documentation

struct Elem

Structure representing a single element in the linked list.

Public Members

int Val

Integer value stored in the node.

std::shared_ptr<Elem> Next

Pointer to the next node in the list.