Path: blob/main/contrib/llvm-project/libcxx/src/experimental/tzdb_list.cpp
35230 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78// For information see https://libcxx.llvm.org/DesignDocs/TimeZone.html910#include <chrono>1112#include "include/tzdb/tzdb_list_private.h"1314_LIBCPP_BEGIN_NAMESPACE_STD1516namespace chrono {1718_LIBCPP_EXPORTED_FROM_ABI tzdb_list::~tzdb_list() { delete __impl_; }1920[[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI const tzdb& tzdb_list::__front() const noexcept { return __impl_->__front(); }2122_LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__erase_after(const_iterator __p) {23return __impl_->__erase_after(__p);24}2526[[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__begin() const noexcept {27return __impl_->__begin();28}29[[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__end() const noexcept {30return __impl_->__end();31}3233[[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__cbegin() const noexcept {34return __impl_->__begin();35}36[[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__cend() const noexcept {37return __impl_->__end();38}3940} // namespace chrono4142_LIBCPP_END_NAMESPACE_STD434445