Searched defs:MoveOnlyInt2 (Results 1 – 1 of 1) sorted by relevance
38 struct MoveOnlyInt2 { struct39 MoveOnlyInt2() {} in MoveOnlyInt2() argument40 explicit MoveOnlyInt2(int value) : value(value) {} in MoveOnlyInt2() argument43 MoveOnlyInt2(MoveOnlyInt2&& other) : value(other.value) {} in MoveOnlyInt2() argument44 MoveOnlyInt2& operator=(MoveOnlyInt2&& other) { in operator =()49 explicit MoveOnlyInt2(MoveOnlyInt&& other) : value(other.value) {} in MoveOnlyInt2() function50 MoveOnlyInt2& operator=(MoveOnlyInt&& other) { in operator =()55 int value = kDefaultMoveOnlyIntValue;