Unix VPS A - Starter B - Basic C - Preferred D - Commercial MPS - Dedicated Previous VPSs * Sign Up! *
Support Contact Us Online Help Handbooks Domain Status Man Pages
FAQ Virtual Servers Pricing Billing Technical
Network Facilities Connectivity Topology Map
Miscellaneous Server Agreement Year 2038 Credits
std::initializer_list::size - std::initializer_list::size
size_type size() const noexcept; (since C++11) (until C++14) constexpr size_type size() const noexcept; (since C++14)
Returns the number of elements in the initializer list, i.e. std::distance(begin(), end()).
(none)
the number of elements in the initializer list
Constant
// Run this code
#include <initializer_list> int main() { static_assert(std::initializer_list{1,2,3,4}.size() == 4); }
Visit the GSP FreeBSD Man Page Interface.Output converted with ManDoc.