Home | History | Annotate | Download | only in src

Lines Matching full:default_value

396   // Returns the i-th element of the Vector, or default_value if i is not
398 E GetElementOr(int i, E default_value) const {
399 return (i < 0 || i >= size_) ? default_value : *(elements_[i]);