14#include "arccore/collections/StringVector.h"
16#include "arccore/base/String.h"
17#include "arccore/collections/Array.h"
39StringVector(
const StringVector& rhs)
42 m_p =
new Impl(*rhs.m_p);
58StringVector& StringVector::
59operator=(
const StringVector& rhs)
62 Impl* new_mp =
nullptr;
64 new_mp =
new Impl(*rhs.m_p);
96 return (m_p ? m_p->m_values.size() : 0);
106 m_p->m_values.add(str);
113operator[](
Int32 index)
const
115 ARCCORE_CHECK_POINTER(m_p);
116 return m_p->m_values[index];
Chaîne de caractères unicode.
Vecteur 1D de données avec sémantique par valeur (style STL).
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int32_t Int32
Type entier signé sur 32 bits.