Lines Matching defs:other
47 Either (const Either<First, Second>& other);
48 Either& operator= (const Either<First, Second>& other);
175 Either<First, Second>::Either (const Either<First, Second>& other)
176 : m_isFirst (other.m_isFirst)
179 m_first = new(m_data)First(*other.m_first);
181 m_second = new(m_data)Second(*other.m_second);
185 Either<First, Second>& Either<First, Second>::operator= (const Either<First, Second>& other)
187 if (this == &other)
192 m_isFirst = other.m_isFirst;
195 m_first = new(m_data)First(*other.m_first);
197 m_second = new(m_data)Second(*other.m_second);