Namespace for the library. More...
Namespaces | |
command_line_style | |
Classes | |
class | abstract_variables_map |
Implements string->string mapping with convenient value casting facilities. More... | |
class | ambiguous_option |
Class thrown when there's ambiguity amoung several possible options. More... | |
class | basic_command_line_parser |
Command line parser. More... | |
class | basic_option |
Option found in input source. More... | |
singleton | basic_parsed_options |
Results of parsing an input source. More... | |
class | basic_parsed_options< wchar_t > |
Specialization of basic_parsed_options which: More... | |
class | duplicate_option_error |
Class thrown when duplicate option description is found. More... | |
class | error |
Base class for all errors in the library. More... | |
class | error_with_no_option_name |
Base class of unparsable options, when the desired option cannot be identified. More... | |
class | error_with_option_name |
Base class for most exceptions in the library. More... | |
class | invalid_bool_value |
Class thrown if there is an invalid bool value given. More... | |
class | invalid_command_line_style |
Class thrown when there are programming error related to style. More... | |
class | invalid_command_line_syntax |
Class thrown when there are syntax errors in given command line. More... | |
class | invalid_config_file_syntax |
class | invalid_option_value |
Class thrown if there is an invalid option value given. More... | |
class | invalid_syntax |
Class thrown when there's syntax error either for command line or config file options. More... | |
class | multiple_occurrences |
Class thrown when there are several occurrences of an option, but user called a method which cannot return them all. More... | |
class | multiple_values |
Class thrown when there are several option values, but user called a method which cannot return them all. More... | |
class | option_description |
Describes one possible command line/config file option. More... | |
class | options_description |
A set of option descriptions. More... | |
class | options_description_easy_init |
Class which provides convenient creation syntax to option_description. More... | |
class | positional_options_description |
Describes positional options. More... | |
class | reading_file |
Class thrown if config file can not be read. More... | |
class | required_option |
Class thrown when a required/mandatory option is missing. More... | |
class | too_many_positional_options_error |
Class thrown when there are too many positional options. More... | |
class | typed_value |
Class which handles value of a specific type. More... | |
class | typed_value_base |
Base class for all option that have a fixed type, and are willing to announce this type to the outside world. More... | |
class | unknown_option |
Class thrown when option name is not recognized. More... | |
class | untyped_value |
Class which specifies a simple handling of a value: the value will have string type and only one token is allowed. More... | |
class | validation_error |
Class thrown when value of option is incorrect. More... | |
class | value_semantic |
Class which specifies how the option's value is to be parsed and converted into C++ types. More... | |
class | value_semantic_codecvt_helper |
Helper class which perform necessary character conversions in the 'parse' method and forwards the data further. More... | |
class | value_semantic_codecvt_helper< char > |
Helper conversion class for values that accept ascii strings as input. More... | |
class | value_semantic_codecvt_helper< wchar_t > |
Helper conversion class for values that accept ascii strings as input. More... | |
class | variable_value |
Class holding value of option. More... | |
class | variables_map |
Concrete variables map which store variables in real map. More... | |
Typedefs | |
typedef basic_option< char > | option |
typedef basic_option< wchar_t > | woption |
typedef basic_parsed_options < char > | parsed_options |
typedef basic_parsed_options < wchar_t > | wparsed_options |
typedef function1< std::pair < std::string, std::string > , const std::string & > | ext_parser |
Augments basic_parsed_options<wchar_t> with conversion from 'parsed_options'. More... | |
typedef basic_command_line_parser < char > | command_line_parser |
typedef basic_command_line_parser < wchar_t > | wcommand_line_parser |
Enumerations | |
enum | collect_unrecognized_mode { include_positional, exclude_positional } |
Controls if the 'collect_unregistered' function should include positional options, or not. More... | |
Functions | |
std::string | strip_prefixes (const std::string &text) |
template<class charT > | |
basic_parsed_options< charT > | parse_command_line (int argc, const charT *const argv[], const options_description &, int style=0, function1< std::pair< std::string, std::string >, const std::string & > ext=ext_parser()) |
Creates instance of 'command_line_parser', passes parameters to it, and returns the result of calling the 'run' method. More... | |
template<class charT > | |
BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options< charT > | parse_config_file (std::basic_istream< charT > &, const options_description &, bool allow_unregistered=false) |
Parse a config file. More... | |
template<class charT > | |
BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options< charT > | parse_config_file (const char *filename, const options_description &, bool allow_unregistered=false) |
Parse a config file. More... | |
template<class charT > | |
std::vector< std::basic_string < charT > > | collect_unrecognized (const std::vector< basic_option< charT > > &options, enum collect_unrecognized_mode mode) |
Collects the original tokens for all named options with 'unregistered' flag set. More... | |
BOOST_PROGRAM_OPTIONS_DECL parsed_options | parse_environment (const options_description &, const function1< std::string, std::string > &name_mapper) |
Parse environment. More... | |
BOOST_PROGRAM_OPTIONS_DECL parsed_options | parse_environment (const options_description &, const std::string &prefix) |
Parse environment. More... | |
BOOST_PROGRAM_OPTIONS_DECL parsed_options | parse_environment (const options_description &, const char *prefix) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function exists to resolve ambiguity between the two above functions when second argument is of 'char*' type. More... | |
BOOST_PROGRAM_OPTIONS_DECL std::vector< std::string > | split_unix (const std::string &cmdline, const std::string &seperator=" \t", const std::string "e="'\"", const std::string &escape="\\") |
Splits a given string to a collection of single strings which can be passed to command_line_parser. More... | |
BOOST_PROGRAM_OPTIONS_DECL std::vector< std::wstring > | split_unix (const std::wstring &cmdline, const std::wstring &seperator=L" \t", const std::wstring "e=L"'\"", const std::wstring &escape=L"\\") |
template<class T > | |
typed_value< T > * | value () |
Creates a typed_value<T> instance. More... | |
template<class T > | |
typed_value< T > * | value (T *v) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
template<class T > | |
typed_value< T, wchar_t > * | wvalue () |
Creates a typed_value<T> instance. More... | |
template<class T > | |
typed_value< T, wchar_t > * | wvalue (T *v) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
BOOST_PROGRAM_OPTIONS_DECL typed_value< bool > * | bool_switch () |
Works the same way as the 'value<bool>' function, but the created value_semantic won't accept any explicit value. More... | |
BOOST_PROGRAM_OPTIONS_DECL typed_value< bool > * | bool_switch (bool *v) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
BOOST_PROGRAM_OPTIONS_DECL void | store (const basic_parsed_options< char > &options, variables_map &m, bool utf8=false) |
Stores in 'm' all options that are defined in 'options'. More... | |
BOOST_PROGRAM_OPTIONS_DECL void | store (const basic_parsed_options< wchar_t > &options, variables_map &m) |
Stores in 'm' all options that are defined in 'options'. More... | |
BOOST_PROGRAM_OPTIONS_DECL void | notify (variables_map &m) |
Runs all 'notify' function for options in 'm'. More... | |
Namespace for the library.
typedef function1<std::pair<std::string, std::string>, const std::string&> boost::program_options::ext_parser |
Augments basic_parsed_options<wchar_t> with conversion from 'parsed_options'.
typedef basic_option<char> boost::program_options::option |
typedef basic_parsed_options<char> boost::program_options::parsed_options |
typedef basic_command_line_parser<wchar_t> boost::program_options::wcommand_line_parser |
typedef basic_option<wchar_t> boost::program_options::woption |
typedef basic_parsed_options<wchar_t> boost::program_options::wparsed_options |
BOOST_PROGRAM_OPTIONS_DECL typed_value<bool>* boost::program_options::bool_switch | ( | ) |
Works the same way as the 'value<bool>' function, but the created value_semantic won't accept any explicit value.
So, if the option is present on the command line, the value will be 'true'.
BOOST_PROGRAM_OPTIONS_DECL typed_value<bool>* boost::program_options::bool_switch | ( | bool * | v | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
std::vector< std::basic_string<charT> > boost::program_options::collect_unrecognized | ( | const std::vector< basic_option< charT > > & | options, |
enum collect_unrecognized_mode | mode | ||
) |
Collects the original tokens for all named options with 'unregistered' flag set.
If 'mode' is 'include_positional' also collects all positional options. Returns the vector of origianl tokens for all collected options.
BOOST_PROGRAM_OPTIONS_DECL void boost::program_options::notify | ( | variables_map & | m | ) |
Runs all 'notify' function for options in 'm'.
basic_parsed_options<charT> boost::program_options::parse_command_line | ( | int | argc, |
const charT *const | argv[], | ||
const options_description & | , | ||
int | style = 0 , |
||
function1< std::pair< std::string, std::string >, const std::string & > | ext = ext_parser() |
||
) |
Creates instance of 'command_line_parser', passes parameters to it, and returns the result of calling the 'run' method.
BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<charT> boost::program_options::parse_config_file | ( | std::basic_istream< charT > & | , |
const options_description & | , | ||
bool | allow_unregistered = false |
||
) |
Parse a config file.
Read from given stream.
BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<charT> boost::program_options::parse_config_file | ( | const char * | filename, |
const options_description & | , | ||
bool | allow_unregistered = false |
||
) |
Parse a config file.
Read from file with the given name. The character type is passed to the file stream.
BOOST_PROGRAM_OPTIONS_DECL parsed_options boost::program_options::parse_environment | ( | const options_description & | , |
const function1< std::string, std::string > & | name_mapper | ||
) |
Parse environment.
For each environment variable, the 'name_mapper' function is called to obtain the option name. If it returns empty string, the variable is ignored.
This is done since naming of environment variables is typically different from the naming of command line options.
BOOST_PROGRAM_OPTIONS_DECL parsed_options boost::program_options::parse_environment | ( | const options_description & | , |
const std::string & | prefix | ||
) |
Parse environment.
Takes all environment variables which start with 'prefix'. The option name is obtained from variable name by removing the prefix and converting the remaining string into lower case.
BOOST_PROGRAM_OPTIONS_DECL parsed_options boost::program_options::parse_environment | ( | const options_description & | , |
const char * | prefix | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function exists to resolve ambiguity between the two above functions when second argument is of 'char*' type.
There's implicit conversion to both function1 and string.
BOOST_PROGRAM_OPTIONS_DECL std::vector<std::string> boost::program_options::split_unix | ( | const std::string & | cmdline, |
const std::string & | seperator = " \t" , |
||
const std::string & | quote = "'\"" , |
||
const std::string & | escape = "\\" |
||
) |
Splits a given string to a collection of single strings which can be passed to command_line_parser.
The second parameter is used to specify a collection of possible seperator chars used for splitting. The seperator is defaulted to space " ". Splitting is done in a unix style way, with respect to quotes '"' and escape characters '\'
BOOST_PROGRAM_OPTIONS_DECL std::vector<std::wstring> boost::program_options::split_unix | ( | const std::wstring & | cmdline, |
const std::wstring & | seperator = L" \t" , |
||
const std::wstring & | quote = L"'\"" , |
||
const std::wstring & | escape = L"\\" |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
BOOST_PROGRAM_OPTIONS_DECL void boost::program_options::store | ( | const basic_parsed_options< char > & | options, |
variables_map & | m, | ||
bool | utf8 = false |
||
) |
Stores in 'm' all options that are defined in 'options'.
If 'm' already has a non-defaulted value of an option, that value is not changed, even if 'options' specify some value.
BOOST_PROGRAM_OPTIONS_DECL void boost::program_options::store | ( | const basic_parsed_options< wchar_t > & | options, |
variables_map & | m | ||
) |
Stores in 'm' all options that are defined in 'options'.
If 'm' already has a non-defaulted value of an option, that value is not changed, even if 'options' specify some value. This is wide character variant.
|
inline |
typed_value<T>* boost::program_options::value | ( | ) |
Creates a typed_value<T> instance.
This function is the primary method to create value_semantic instance for a specific type, which can later be passed to 'option_description' constructor. The second overload is used when it's additionally desired to store the value of option into program variable.
Referenced by boost::geometry::math::abs(), boost::spirit::assign_action::act(), boost::spirit::push_back_action::act(), boost::spirit::push_front_action::act(), boost::spirit::insert_at_action::act(), boost::msm::front::a_internal< Event, CalledForAction, action >::action_call(), boost::msm::front::a_row2< T1, Event, T2, CalledForAction, action >::action_call(), boost::msm::front::internal< Event, CalledForAction, action, CalledForGuard, guard >::action_call(), boost::msm::front::row2< T1, Event, T2, CalledForAction, action, CalledForGuard, guard >::action_call(), boost::msm::front::a_irow2< T1, Event, CalledForAction, action >::action_call(), boost::msm::front::irow2< T1, Event, CalledForAction, action, CalledForGuard, guard >::action_call(), boost::add_value(), boost::alignment::aligned_allocator< T, Alignment >::address(), boost::alignment::aligned_allocator< T, Alignment >::allocate(), boost::alignment::aligned_allocator_adaptor< Allocator, Alignment >::allocate(), boost::container::allocator_traits< Allocator >::allocate(), boost::allocate_shared(), boost::any_cast(), boost::units::detail::format_raw_symbol_impl::append_scale_to(), boost::units::detail::format_raw_name_impl::append_scale_to(), boost::units::detail::format_raw_symbol_impl::append_units_to(), boost::units::detail::format_raw_name_impl::append_units_to(), boost::icl::detail::successor< DomainT, true >::apply(), boost::icl::to_string< Type >::apply(), boost::geometry::detail::no_rescale_policy::apply(), boost::icl::detail::successor< DomainT, false >::apply(), boost::geometry::strategy::side::spherical_side_formula< CalculationType >::apply(), boost::icl::detail::predecessor< DomainT, true >::apply(), boost::geometry::strategy::side::side_by_cross_track< CalculationType >::apply(), boost::icl::detail::predecessor< DomainT, false >::apply(), boost::geometry::detail::remove_spikes::range_remove_spikes< Ring >::apply(), boost::geometry::strategy::side::side_by_triangle< CalculationType >::apply(), boost::geometry::detail::for_each::fe_range_per_segment_with_closure< Closure >::apply(), boost::geometry::detail::touches::box_box::apply(), boost::geometry::detail::for_each::fe_range_per_segment_with_closure< open >::apply(), boost::geometry::detail::simplify::simplify_polygon::apply(), boost::geometry::dispatch::area< Polygon, polygon_tag >::apply(), boost::geometry::detail::touches::areal_areal< Areal1, Areal2 >::apply(), boost::geometry::strategy::distance::services::result_from_distance< comparable::pythagoras< CalculationType >, Point1, Point2 >::apply(), boost::detail::bfs_dispatch< ColorMap >::apply(), boost::detail::bfs_dispatch< param_not_found >::apply(), boost::geometry::strategy::distance::services::result_from_distance< comparable::pythagoras_point_box< CalculationType >, Point, Box >::apply(), boost::geometry::strategy::distance::services::result_from_distance< comparable::pythagoras_box_box< CalculationType >, Box1, Box2 >::apply(), boost::python::detail::arity(), boost::iostreams::detail::array_adapter< Mode, Ch >::array_adapter(), boost::parameter::aux::as_lvalue(), boost::geometry::assert_dimension(), boost::compressed_sparse_row_graph< directedS, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex >::assign(), boost::compressed_sparse_row_graph< bidirectionalS, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex >::assign(), boost::multi_index::detail::random_access_index< SuperMeta, TagList >::at(), boost::spirit::x3::attr_parser< Value[N]>::attr_parser(), boost::container::stable_vector< T, Allocator >::back(), boost::serialization::base_object(), boost::math::bernoulli_b2n(), boost::math::detail::bernoulli_number_imp(), boost::math::detail::bessel_i0(), boost::math::detail::bessel_i1(), boost::math::binomial_coefficient(), boost::numeric::ublas::block_prod(), boost::graph::distributed::boman_et_al_graph_coloring(), boost::concepts::BOOST_concept(), boost::BOOST_JOIN(), boost::detail::function::BOOST_JOIN(), BOOST_PHOENIX_DEFINE_EXPRESSION(), boost::random::lagged_fibonacci_engine< UIntType, w, p, q >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::discard_block_engine< UniformRandomNumberGenerator, p, r >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::mersenne_twister_engine< UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::subtract_with_carry_engine< IntType, w, s, r >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::lagged_fibonacci_01_engine< RealType, w, p, q >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::subtract_with_carry_01_engine< RealType, w, s, r >::BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(), boost::random::lagged_fibonacci_engine< UIntType, w, p, q >::BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(), boost::random::mersenne_twister_engine< UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f >::BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(), boost::random::subtract_with_carry_engine< IntType, w, s, r >::BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(), boost::random::lagged_fibonacci_01_engine< RealType, w, p, q >::BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(), boost::random::subtract_with_carry_01_engine< RealType, w, s, r >::BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(), boost::random::lagged_fibonacci_01_engine< RealType, w, p, q >::BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(), boost::random::subtract_with_carry_01_engine< RealType, w, s, r >::BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(), boost::detail::graph::brandes_betweenness_centrality_dispatch2(), boost::graph::parallel::detail::brandes_betweenness_centrality_dispatch2(), boost::detail::graph::brandes_betweenness_centrality_impl(), boost::graph::parallel::detail::brandes_betweenness_centrality_impl(), boost::parallel::cache(), boost::fusion::extension::at_impl< po_array_tag >::apply< Seq, N >::call(), boost::spirit::x3::traits::make_attribute_base< Attribute >::call(), boost::fusion::extension::deref_impl< po_array_iterator_tag >::apply< It >::call(), boost::fusion::array_iterator< Array, Pos >::deref< Iterator >::call(), boost::lambda::detail::return_or_throw< RET, ARG >::call(), boost::type_erasure::tuple< Concept, T >::at< Seq, N >::call(), boost::spirit::traits::assign_to_attribute_from_value< Attribute, lex::lexertl::token< Iterator, AttributeTypes, HasState, Idtype > >::call(), boost::spirit::traits::assign_to_attribute_from_value< Attribute, lex::lexertl::position_token< Iterator, AttributeTypes, HasState, Idtype > >::call(), boost::spirit::traits::assign_to_attribute_from_value< Attribute, lex::lexertl::position_token< Iterator, mpl::vector1< Attr >, HasState, Idtype > >::call(), boost::spirit::traits::assign_to_attribute_from_value< Attribute, lex::lexertl::position_token< Iterator, mpl::vector< Attr >, HasState, Idtype > >::call(), boost::spirit::traits::make_attribute< Attribute const, ActualAttribute >::call(), boost::spirit::detail::cast_char(), boost::lambda::catch_all(), boost::math::detail::cbrt_imp(), boost::wave::context_policies::util::ccomment_count_newlines(), boost::iterators::lvalue_test< is_pointer >::check(), boost::statechart::state_machine< MostDerived, InitialState, Allocator, ExceptionTranslator >::clear_deep_history(), boost::statechart::state_machine< MostDerived, InitialState, Allocator, ExceptionTranslator >::clear_shallow_history(), boost::iostreams::device< Mode, Ch >::close(), boost::iostreams::filter< Mode, Ch >::close(), boost::iostreams::detail::composite_device< Filter, Device, Mode >::close(), boost::iostreams::detail::combined_filter< InputFilter, OutputFilter >::close(), boost::iostreams::detail::code_converter_impl< Device, Codecvt, Alloc >::close(), boost::iostreams::detail::composite_filter< Filter1, Filter2, Mode >::close(), boost::iostreams::detail::close_impl< close_filtering_stream >::close(), boost::iostreams::detail::close_impl< closable_tag >::close(), boost::compressed_sparse_row_graph< directedS, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex >::compressed_sparse_row_graph(), boost::compressed_sparse_row_graph< bidirectionalS, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex >::compressed_sparse_row_graph(), boost::geometry::concatenate_iterator< Iterator1, Iterator2, Value, Reference >::concatenate_iterator(), boost::connected_components(), boost::intrusive::pointer_traits< pointer >::const_cast_from(), boost::constant_lvalue_iterator_test(), boost::BaseRegexConcept< Regex >::constraints(), boost::gil::HomogeneousColorBaseConcept< ColorBase >::constraints(), boost::gil::ColorBasesCompatibleConcept< ColorBase1, ColorBase2 >::constraints(), boost::gil::HomogeneousPixelValueConcept< P >::constraints(), boost::gil::RandomAccessNDLocatorConcept< Loc >::constraints(), boost::gil::PixelLocatorConcept< Loc >::constraints(), boost::gil::RandomAccessNDImageViewConcept< View >::constraints(), boost::gil::ImageViewConcept< View >::constraints(), boost::gil::ImageConcept< Img >::constraints(), boost::container::allocator_traits< Allocator >::construct(), boost::container::container_detail::basic_string_base< Allocator >::construct(), boost::units::conversion_factor(), boost::wave::cpplexer::impl::convert_trigraphs(), boost::polygon::convolve(), boost::iostreams::detail::copy_impl(), boost::multi_index::detail::hashed_index< KeyFromValue, Hash, Pred, SuperMeta, TagList, Category >::count(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::count(), boost::graph::distributed::crauser_et_al_shortest_paths(), boost::alignment::aligned_allocator_adaptor< Allocator, Alignment >::deallocate(), boost::polygon::deconvolve(), boost::gil::default_construct_pixels(), boost::movelib::default_delete< T >::default_delete(), boost::wave::grammars::chlit_grammar::definition< ScannerT >::definition(), boost::container::allocator_traits< Allocator >::destroy(), boost::geometry::detail::difference::difference_insert(), boost::math::policies::detail::digits_imp(), boost::wave::impl::pp_iterator_functor< ContextT >::dispatch_directive(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::do_process_event(), boost::math::double_factorial(), boost::dynamic_bitset< Block, Allocator >::dynamic_bitset(), boost::intrusive::pointer_traits< pointer >::dynamic_cast_from(), boost::math::detail::ellint_e_imp(), boost::math::detail::ellint_k_imp(), boost::math::detail::ellint_pi_imp(), boost::math::detail::ellint_rc_imp(), boost::math::detail::ellint_rd_imp(), boost::math::detail::ellint_rf_imp(), boost::math::detail::ellint_rj_imp(), boost::locale::utf::utf_traits< CharType, 1 >::encode(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::epsilon(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::cpp_bin_float< Digits, DigitBase, Allocator, Exponent, MinE, MaxE >, ExpressionTemplates > >::epsilon(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::epsilon(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::gmp_float< Digits10 >, ExpressionTemplates > >::epsilon(), boost::detail::multi_array::array_iterator< T, TPtr, NumDims, Reference, IteratorCategory >::equal(), boost::multi_index::detail::hashed_index< KeyFromValue, Hash, Pred, SuperMeta, TagList, Category >::equal_range(), boost::geometry::math::equals(), boost::geometry::math::equals_with_epsilon(), boost::multi_index::detail::hashed_index< KeyFromValue, Hash, Pred, SuperMeta, TagList, Category >::erase(), boost::wave::util::impl::escape_lit(), boost::multiprecision::backends::eval_convert_to(), boost::math::tools::detail::evaluate_polynomial_c_imp(), boost::math::tools::detail::evaluate_rational_c_imp(), boost::msm::back::dispatch_table< Fsm, Stt, Event, CompilePolicy >::chain_row< Seq, AnEvent, State >::execute_helper::execute(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::row_< ROW >::execute(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::g_row_< ROW >::execute(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::a_row_< ROW >::execute(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::_row_< ROW >::execute(), boost::wave::util::macromap< ContextT >::expand_predefined_macro(), boost::math::detail::expint_imp(), boost::archive::detail::extra_detail::guid_initializer< T >::export_guid(), boost::math::factorial(), boost::math::detail::falling_factorial_imp(), boost::iterators::filter_iterator< Predicate, Iterator >::filter_iterator(), boost::multi_index::detail::hashed_index< KeyFromValue, Hash, Pred, SuperMeta, TagList, Category >::find(), boost::graph_detail::find_dispatch(), boost::numeric::ublas::generalized_vector_of_vector< T, L, A >::find_element(), boost::math::find_location(), boost::units::detail::find_matching_scale_i(), boost::units::detail::find_matching_scale_impl(), boost::math::find_scale(), boost::container::flat_map< Key, T, Compare, Allocator >::flat_map(), boost::container::flat_multimap< Key, T, Compare, Allocator >::flat_multimap(), boost::geometry::flatten_iterator< OuterIterator, InnerIterator, Value, AccessInnerBegin, AccessInnerEnd, Reference >::flatten_iterator(), boost::graph::distributed::fleischer_hendrickson_pinar_strong_components(), boost::icl::flip(), boost::floyd_warshall_all_pairs_shortest_paths(), boost::expressions::format_named_scope(), boost::forward(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::exit_pt< ExitPoint >::forward_event(), boost::container::stable_vector< T, Allocator >::front(), boost::math::detail::gamma_imp(), boost::spirit::karma::rule< OutputIterator, T1, T2, T3, T4 >::generate(), boost::random::detail::generate_canonical_impl(), boost::spirit::karma::base_sequence< Elements, mpl::true_, strict_sequence< Elements > >::generate_impl(), boost::random::detail::generate_uniform_int(), boost::externally_locked< Stream &, RecursiveMutex >::get(), boost::BOOST_RT_PARAM_NAMESPACE::environment::get(), boost::flyweights::flyweight< T, Arg1, Arg2, Arg3, Arg4, Arg5 >::get(), boost::externally_locked< T &, MutexType >::get(), boost::geometry::strategy::transform::detail::as_radian< radian >::get(), boost::geometry::strategy::transform::detail::as_radian< degree >::get(), boost::math::policies::detail::series_factor_calc< T, Digits, Small, Default >::get(), boost::math::policies::detail::series_factor_calc< T, Digits, mpl::true_, mpl::false_ >::get(), boost::multi_index::get(), boost::spirit::get_action_subject(), boost::spirit::get_binary_left_subject(), boost::spirit::get_binary_right_subject(), boost::serialization::extended_type_info_no_rtti< T >::get_debug_info(), boost::serialization::extended_type_info_typeid< T >::get_derived_extended_type_info(), boost::serialization::extended_type_info_no_rtti< T >::get_derived_extended_type_info(), boost::serialization::extended_type_info_no_rtti< T >::get_key(), boost::math::policies::get_max_root_iterations(), boost::math::policies::get_max_series_iterations(), boost::interprocess::ipcdetail::mq_hdr_t< VoidPointer >::get_mem_size(), boost::python::converter::expected_pytype_for_arg< T >::get_pytype(), boost::python::converter::registered_pytype< T >::get_pytype(), boost::python::converter::to_python_target_type< T >::get_pytype(), boost::statechart::detail::result_utility::get_result(), boost::spirit::get_semantic_action(), boost::spirit::get_unary_subject(), boost::BaseRegexConcept< Regex >::global_constraints(), boost::spirit::qi::grammar< Iterator, T1, T2, T3, T4 >::grammar(), boost::spirit::karma::grammar< OutputIterator, T1, T2, T3, T4 >::grammar(), boost::msm::front::internal< Event, CalledForAction, action, CalledForGuard, guard >::guard_call(), boost::msm::front::g_internal< Event, CalledForGuard, guard >::guard_call(), boost::msm::front::row2< T1, Event, T2, CalledForAction, action, CalledForGuard, guard >::guard_call(), boost::msm::front::g_row2< T1, Event, T2, CalledForGuard, guard >::guard_call(), boost::msm::front::irow2< T1, Event, CalledForAction, action, CalledForGuard, guard >::guard_call(), boost::msm::front::g_irow2< T1, Event, CalledForGuard, guard >::guard_call(), boost::heap::heap_merge(), boost::polygon::interval_data< coordinate_type >::high(), boost::graph::distributed::hohberg_biconnected_components(), boost::multiprecision::backends::if(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::infinity(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::cpp_bin_float< Digits, DigitBase, Allocator, Exponent, MinE, MaxE >, ExpressionTemplates > >::infinity(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::infinity(), boost::python::init<>::init(), boost::BOOST_RT_PARAM_NAMESPACE::environment::rt_env_detail::init_new_var(), boost::interprocess::ipcdetail::mq_hdr_t< VoidPointer >::initialize_memory(), boost::iostreams::detail::array_adapter< Mode, Ch >::input_sequence(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::insert(), boost::container::vector< Value, container_detail::static_storage_allocator< Value, Capacity > >::insert(), boost::integer_log2(), boost::numeric::odeint::integrate_const(), boost::gil::interleaved_view_get_raw_data(), boost::detail::win32::interlocked_bit_test_and_reset(), boost::detail::win32::interlocked_bit_test_and_set(), boost::detail::interlocked_write_release(), boost::BOOST_RT_PARAM_NAMESPACE::interpret_argument_value(), boost::icl::conversion< icl::inplace_minus< Type > >::inversion(), boost::serialization::variant_impl< S >::load_impl::invoke(), boost::algorithm::iota(), boost::algorithm::iota_n(), boost::spirit::traits::compute_compatible_component_variant< Variant, Expected, mpl::false_, typename enable_if< detail::has_types< Variant > >::type >::is_compatible(), boost::mutate_graph_impl< MutableGraph >::is_directed(), boost::detail::graph::mutate_graph_impl< MutableGraph >::is_directed(), boost::detail::graph::mutate_graph_impl< compressed_sparse_row_graph< Directed, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex > >::is_directed(), boost::msm::back::is_exit_state_active(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::is_flag_active(), boost::mpi::communicator::isend_impl(), boost::isomorphism(), boost::iterators::detail::iterator_adaptor_assert_traversal(), boost::johnson_all_pairs_shortest_paths(), boost::kamada_kawai_spring_layout(), boost::math::kurtosis(), boost::math::kurtosis_excess(), boost::geometry::math::larger(), boost::math::detail::lgamma_imp(), boost::multi_index::multi_index_container< adjacency_list_traits< listS, listS, bidirectionalS, listS >::vertex_descriptor, multi_index::indexed_by< multi_index::hashed_unique< multi_index::tag< vertex_name_t >, extract_name_from_vertex > > >::load(), boost::parallel::local_put(), boost::polygon::interval_data< coordinate_type >::low(), boost::make_constant_property(), boost::make_constant_writable_property(), boost::python::detail::make_constructor_aux(), boost::python::detail::make_function_aux(), boost::statechart::detail::history_key< RttiPolicy >::make_history_key(), boost::statechart::detail::result_utility::make_result(), boost::make_shared(), boost::container::map< const sync_id *, umap_type::iterator, address_less >::map(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::max(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::cpp_bin_float< Digits, DigitBase, Allocator, Exponent, MinE, MaxE >, ExpressionTemplates > >::max(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::max(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::gmp_float< Digits10 >, ExpressionTemplates > >::max(), boost::alignment::aligned_allocator< T, Alignment >::max_size(), boost::container::allocator_traits< Allocator >::max_size(), boost::parallel::detail::maybe_put_impl(), boost::math::mean(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::min(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::cpp_bin_float< Digits, DigitBase, Allocator, Exponent, MinE, MaxE >, ExpressionTemplates > >::min(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::min(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::gmp_float< Digits10 >, ExpressionTemplates > >::min(), boost::move_if_not_lvalue_reference(), boost::spirit::x3::traits::detail::move_to_variant_from_single_element_sequence(), boost::container::multimap< Key, T, Compare, Allocator, MultiMapOptions >::multimap(), boost::filesystem::recursive_directory_iterator::no_push(), boost::non_const_lvalue_iterator_test(), boost::detail::graph::non_distributed_brandes_betweenness_centrality_dispatch2(), boost::graph::parallel::detail::non_distributed_brandes_betweenness_centrality_impl(), boost::numeric::odeint::mpi_nested_algebra< InnerAlgebra >::norm_inf(), boost::iostreams::detail::code_converter_impl< Device, Codecvt, Alloc >::open(), bool_< true >::operator bool(), integral_c< bool, C >::operator bool(), boost::tuples::operator!=(), boost::multiprecision::literals::operator""_cppi(), boost::multiprecision::literals::operator""_cppui(), boost::multiprecision::number< Backend, ExpressionTemplates >::operator%=(), boost::multiprecision::number< Backend, ExpressionTemplates >::operator&=(), boost::last_value< T >::operator()(), boost::signals2::optional_last_value< T >::operator()(), boost::signals2::last_value< T >::operator()(), boost::archive::iterators::detail::to_6_bit< CharType >::operator()(), boost::python::objects::register_base_of< Derived >::operator()(), boost::BOOST_RT_PARAM_NAMESPACE::cla::rt_cla_detail::default_value_interpreter::operator()(), boost::graph::distributed::shuffled_distribution< BaseDistribution >::operator()(), boost::algorithm::knuth_morris_pratt< patIter >::operator()(), boost::algorithm::boyer_moore_horspool< patIter, traits >::operator()(), boost::algorithm::boyer_moore< patIter, traits >::operator()(), boost::detail::variant::get_polymorphic_visitor< Base >::operator()(), boost::spirit::x3::attr_gen::operator()(), boost::phoenix::custom_terminal< detail::local< Key > >::operator()(), boost::wave::grammars::impl::convert_chlit::operator()(), boost::void_ptr_indirect_fun< Fun, Arg1, Arg2 >::operator()(), boost::mpi::python::detail::do_get_content< T >::operator()(), boost::geometry::index::detail::equal_to< boost::tuple< T0, T1, T2, T3, T4, T5, T6, T7, T8, T9 >, false >::operator()(), boost::accumulators::impl::peaks_over_threshold_impl< Sample, LeftRight >::operator()(), boost::numeric::ublas::generalized_vector_of_vector< T, L, A >::operator()(), boost::geometry::index::detail::equal_to< std::tuple< Args...>, false >::operator()(), boost::test_tools::check_is_close_t::operator()(), boost::numeric::ublas::vector_unary< E, F >::operator()(), boost::python::detail::direct_serialization_table< IArchiver, OArchiver >::default_saver< T >::operator()(), boost::python::detail::direct_serialization_table< IArchiver, OArchiver >::default_loader< T >::operator()(), boost::unit_test::ut_detail::generate_test_case_4_type< Generator, TestCaseTemplate >::operator()(), boost::xpressive::op::as< T >::operator()(), boost::units::detail::print_scale_t< Os >::operator()(), boost::gil::detail::equal_n_fn< planar_pixel_iterator< IC, Cs >, planar_pixel_iterator< IC, Cs > >::operator()(), boost::multi_index::composite_key_equal_to<>::operator()(), boost::multi_index::composite_key_compare<>::operator()(), boost::spirit::inner_node_op::operator()(), boost::multi_index::composite_key_hash<>::operator()(), boost::numeric::ublas::matrix_unary2< E, F >::operator()(), boost::parallel::detail::remove_out_edge_predicate< Graph, Predicate >::operator()(), boost::units::operator+(), boost::math::tools::polynomial< T >::operator+=(), boost::units::operator-(), boost::math::tools::polynomial< T >::operator-=(), boost::tuples::operator<(), boost::unit_test::operator<<(), boost::numeric::operator<<(), boost::xpressive::operator<<(), boost::basic_formatting_ostream< native_char_type >::operator<<(), boost::operator<<(), boost::multiprecision::number< Backend, ExpressionTemplates >::operator<<=(), boost::tuples::operator<=(), boost::geometry::concatenate_iterator< Iterator1, Iterator2, Value, Reference >::operator=(), boost::geometry::flatten_iterator< OuterIterator, InnerIterator, Value, AccessInnerBegin, AccessInnerEnd, Reference >::operator=(), boost::initialized< T >::operator=(), boost::units::quantity< Unit, Y >::operator=(), boost::container::list< T, Allocator >::operator=(), boost::container::slist< T, Allocator >::operator=(), boost::units::quantity< BOOST_UNITS_DIMENSIONLESS_UNIT(System), Y >::operator=(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::operator=(), boost::container::deque< T, Allocator >::operator=(), boost::container::stable_vector< T, Allocator >::operator=(), boost::container::basic_string< CharT, Traits, Allocator >::operator=(), boost::tuples::operator==(), boost::multi_index::operator==(), boost::container::operator==(), boost::tuples::operator>(), boost::tuples::operator>=(), boost::detail::lexical_stream< Target, Source, Traits >::operator>>(), boost::logic::operator>>(), boost::numeric::ublas::operator>>(), boost::multiprecision::operator>>(), boost::multiprecision::number< Backend, ExpressionTemplates >::operator>>=(), boost::multi_index::detail::random_access_index< SuperMeta, TagList >::operator[](), boost::numeric::ublas::vector_unary< E, F >::operator[](), boost::container::stable_vector< T, Allocator >::operator[](), boost::multiprecision::number< Backend, ExpressionTemplates >::operator^=(), boost::multiprecision::number< Backend, ExpressionTemplates >::operator|=(), boost::detail::optimum_cycle_ratio(), boost::iostreams::detail::array_adapter< Mode, Ch >::output_sequence(), boost::math::owens_t(), boost::math::detail::owens_t_dispatch(), boost::spirit::x3::any_parser< Iterator, Attribute, Context >::parse(), boost::spirit::rxstrlit< CharT >::parse(), boost::spirit::x3::extract_real< T, RealPolicies >::parse(), boost::spirit::case_parser< 0x15F97A7, epsilon_parser, true >::parse(), boost::spirit::qi::rule< Iterator, T1, T2, T3, T4 >::parse(), boost::spirit::repository::qi::kwd_parser< Subject, KeywordType, LoopIter, NoCase, Distinct >::parse(), boost::spirit::repository::qi::complex_kwd_parser< Subject, KeywordType, LoopIter, Distinct >::parse(), boost::spirit::x3::parse_rule(), boost::geometry::point_iterator< Geometry >::point_iterator(), boost::geometry::point_reverse_iterator< Geometry >::point_reverse_iterator(), boost::intrusive::pointer_traits< pointer >::pointer_to(), boost::python::converter::pointer_type_id(), boost::lockfree::stack< T, A0, A1, A2 >::pop(), boost::units::pow(), boost::optional_detail::prevent_binding_rvalue_ref_to_optional_lvalue_ref(), boost::unit_test::print_escaped(), boost::math::constants::print_info_on_type(), boost::msm::back::ShallowHistoryImpl< Events, NumberOfRegions >::process_deferred_events(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::process_event_internal(), boost::BOOST_RT_PARAM_NAMESPACE::cla::typed_argument_factory< T >::produce_using(), boost::multi_index::project(), boost::icl::conversion< icl::inplace_minus< Type > >::proversion(), boost::put(), boost::parallel::put(), boost::detail::dynamic_property_map_adaptor< PropertyMap >::put(), boost::geometry::strategy::compare::circular_comparator< CoordinateType, Units, Compare >::put_in_range(), boost::put_property(), boost::date_time::special_values_formatter< CharT >::put_special(), boost::runtime::putenv_impl(), boost::units::quantity< Unit, Y >::quantity(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::query(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::quiet_NaN(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::quiet_NaN(), boost::iostreams::tee_device< Device, Sink >::read(), boost::detail::read_value(), boost::detail::read_value< std::string >(), boost::readable_iterator_test(), boost::mpi::communicator::recv_impl(), boost::python::register_serialized(), boost::mpi::python::register_serialized(), boost::python::detail::direct_serialization_table< IArchiver, OArchiver >::register_type(), boost::relax(), boost::python::list::remove(), boost::bimaps::container_adaptor::list_adaptor< Base, Iterator, ConstIterator, ReverseIterator, ConstReverseIterator, IteratorToBaseConverter, IteratorFromBaseConverter, ReverseIteratorFromBaseConverter, ValueToBaseConverter, ValueFromBaseConverter, FunctorsFromDerivedClasses >::remove(), boost::bimaps::views::vector_set_view< CoreIndex >::remove(), boost::bimaps::views::vector_map_view< Tag, BimapType >::remove(), boost::multi_index::detail::sequenced_index< SuperMeta, TagList >::remove(), boost::multi_index::detail::random_access_index< SuperMeta, TagList >::remove(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::remove(), boost::intrusive::list_impl< ValueTraits, SizeType, ConstantTimeSize, HeaderHolder >::remove(), boost::container::slist< T, Allocator >::remove(), boost::intrusive::slist_impl< ValueTraits, SizeType, BoolFlags, HeaderHolder >::remove(), boost::remove_edge(), boost::graph::named_graph< Graph, Vertex, VertexProperty >::removing_vertex(), boost::interprocess::shared_ptr< T, VoidAllocator, Deleter >::reset(), boost::accumulators::impl::pot_quantile_impl< Sample, Impl, LeftRight >::result(), boost::accumulators::impl::pot_tail_mean_impl< Sample, Impl, LeftRight >::result(), boost::accumulators::impl::tail_quantile_impl< Sample, LeftRight >::result(), boost::accumulators::impl::coherent_tail_mean_impl< Sample, LeftRight >::result(), boost::accumulators::impl::weighted_tail_quantile_impl< Sample, Weight, LeftRight >::result(), boost::accumulators::impl::extended_p_square_quantile_impl< Sample, Impl1, Impl2 >::result(), boost::accumulators::impl::tail_variate_means_impl< Sample, Impl, LeftRight, VariateTag >::result(), boost::accumulators::impl::non_coherent_weighted_tail_mean_impl< Sample, Weight, LeftRight >::result(), boost::accumulators::impl::weighted_tail_variate_means_impl< Sample, Weight, Impl, LeftRight, VariateType >::result(), boost::accumulators::impl::non_coherent_tail_mean_impl< Sample, LeftRight >::result(), boost::accumulators::impl::peaks_over_threshold_impl< Sample, LeftRight >::result(), boost::accumulators::impl::weighted_peaks_over_threshold_prob_impl< Sample, Weight, LeftRight >::result(), boost::accumulators::impl::peaks_over_threshold_prob_impl< Sample, LeftRight >::result(), boost::math::detail::rising_factorial_imp(), boost::units::root(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfi_float_backend< Digits10 >, ExpressionTemplates > >::round_error(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::cpp_bin_float< Digits, DigitBase, Allocator, Exponent, MinE, MaxE >, ExpressionTemplates > >::round_error(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::mpfr_float_backend< Digits10, AllocateType >, ExpressionTemplates > >::round_error(), std::numeric_limits< boost::multiprecision::number< boost::multiprecision::gmp_float< Digits10 >, ExpressionTemplates > >::round_error(), boost::serialization::stl::save_hash_collection(), boost::serialization::stl::save_unordered_collection(), boost::scalable_rmat_iterator< ProcessGroup, Distribution, RandomGenerator, Graph >::scalable_rmat_iterator(), boost::range_detail::search_n_impl(), std::tr1::subtract_with_carry< IntType, m, s, r >::seed(), std::tr1::subtract_with_carry_01< RealType, w, s, r >::seed(), boost::geometry::segment_iterator< Geometry >::segment_iterator(), boost::container::allocator_traits< Allocator >::select_on_container_copy_construction(), boost::mpi::communicator::send_impl(), boost::graph::distributed::send_oob(), boost::multiprecision::backends::debug_adaptor< Backend >::serialize(), boost::serialization::serialize(), boost::numeric::ublas::map_array< I, T, ALLOC >::serialize(), boost::numeric::ublas::mapped_vector< T, A >::serialize(), boost::numeric::ublas::matrix< T, L, bounded_array< T, M *N > >::serialize(), boost::numeric::ublas::generalized_vector_of_vector< T, L, A >::serialize(), boost::numeric::ublas::compressed_vector< T, IB, IA, TA >::serialize(), boost::numeric::ublas::mapped_matrix< T, L, A >::serialize(), boost::numeric::ublas::zero_vector< T, ALLOC >::serialize(), boost::numeric::ublas::unit_vector< T, ALLOC >::serialize(), boost::numeric::ublas::coordinate_vector< T, IB, IA, TA >::serialize(), boost::numeric::ublas::scalar_vector< T, ALLOC >::serialize(), boost::numeric::ublas::mapped_vector_of_mapped_vector< T, L, A >::serialize(), boost::numeric::ublas::c_vector< T, N >::serialize(), boost::numeric::ublas::vector_of_vector< T, L, A >::serialize(), boost::numeric::ublas::zero_matrix< T, ALLOC >::serialize(), boost::numeric::ublas::compressed_matrix< T, L, IB, IA, TA >::serialize(), boost::numeric::ublas::identity_matrix< T, ALLOC >::serialize(), boost::numeric::ublas::scalar_matrix< T, ALLOC >::serialize(), boost::numeric::ublas::coordinate_matrix< T, L, IB, IA, TA >::serialize(), boost::numeric::ublas::c_matrix< T, N, M >::serialize(), boost::python::api::item_policies::set(), boost::python::api::attribute_policies::set(), boost::python::api::slice_policies::set(), boost::python::api::objattribute_policies::set(), boost::polygon::interval_data< coordinate_type >::set(), boost::geometry::traits::indexed_access< std::pair< Point, Point >, 0, Dimension >::set(), boost::polygon::point_data< coordinate_type >::set(), boost::geometry::traits::indexed_access< std::pair< Point, Point >, 1, Dimension >::set(), boost::geometry::traits::access< CoordinateType[DimensionCount], Dimension >::set(), boost::geometry::traits::access< boost::array< CoordinateType, DimensionCount >, Dimension >::set(), boost::geometry::model::point< CoordinateType, 2, CoordinateSystem >::set(), boost::geometry::traits::indexed_access< model::pointing_segment< Point >, 0, Dimension >::set(), boost::geometry::traits::indexed_access< model::box< Point >, min_corner, Dimension >::set(), boost::geometry::traits::access< model::d2::point_xy< CoordinateType, CoordinateSystem >, Dimension >::set(), boost::geometry::traits::indexed_access< model::box< Point >, max_corner, Dimension >::set(), boost::geometry::traits::indexed_access< model::segment< Point >, 0, Dimension >::set(), boost::geometry::traits::indexed_access< model::pointing_segment< Point >, 1, Dimension >::set(), boost::geometry::traits::indexed_access< model::segment< Point >, 1, Dimension >::set(), boost::geometry::traits::access< model::point< CoordinateType, DimensionCount, CoordinateSystem >, Dimension >::set(), boost::geometry::traits::indexed_access< model::referring_segment< ConstOrNonConstPoint >, 0, Dimension >::set(), boost::geometry::traits::indexed_access< model::referring_segment< ConstOrNonConstPoint >, 1, Dimension >::set(), boost::polygon::anisotropic_scale_factor< scale_factor_type >::set(), boost::geometry::set(), boost::icl::set_at(), boost::statechart::simple_state< MostDerived, Context, InnerInitial, historyMode >::set_context(), boost::mutate_graph_impl< MutableGraph >::set_graph_property(), boost::BOOST_RT_PARAM_NAMESPACE::file::config_file_iterator::set_parameter(), boost::set_property(), boost::program_options::error_with_option_name::set_substitute(), boost::python::api::setattr(), boost::python::api::setitem(), boost::interprocess::shared_ptr< T, VoidAllocator, Deleter >::shared_ptr(), boost::math::skewness(), boost::iostreams::skip(), boost::wave::impl::pp_iterator_functor< ContextT >::skip_to_eol_with_check(), boost::geometry::math::smaller(), boost::sorted_unique_rmat_iterator< RandomGenerator, Graph, EdgePredicate >::sorted_unique_rmat_iterator(), boost::detail::sp_assert_convertible(), boost::geometry::math::sqr(), boost::geometry::math::sqrt(), boost::intrusive::pointer_traits< pointer >::static_cast_from(), boost::statechart::simple_state< MostDerived, Context, InnerInitial, historyMode >::store_deep_history_impl(), boost::strong_components(), boost::geometry::index::rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::swap(), boost::geometry::detail::sym_difference::sym_difference_insert(), boost::function_base::target(), boost::detail::test_trait_impl(), boost::to_log(), boost::xpressive::detail::to_vector(), boost::type_dispatcher::callback_base::trampoline(), boost::iterators::transform_iterator< UnaryFunc, Iterator, Reference, Value >::transform_iterator(), boost::conversion::detail::try_lexical_convert(), boost::graph::distributed::tsin_depth_first_visit(), boost::typeindex::stl_type_index::type_id_runtime(), boost::wave::util::impl::unescape_lit(), boost::gil::uninitialized_copy_pixels(), boost::movelib::unique_ptr< T, D >::unique_ptr(), boost::unique_rmat_iterator< RandomGenerator, Graph, EdgePredicate >::unique_rmat_iterator(), boost::lockfree::stack< T, A0, A1, A2 >::unsynchronized_pop(), boost::python::converter::detail::unwind_type_id(), boost::python::detail::upcast_impl(), v2_eval(), boost::units::power_typeof_helper< float, static_rational< N, D > >::value(), boost::units::root_typeof_helper< T, static_rational< N, D > >::value(), boost::random::detail::generator_bits< discard_block_engine< URNG, p, r > >::value(), boost::random::detail::generator_bits< discard_block< URNG, p, r > >::value(), boost::units::detail::symbol_string_impl< N >::apply< Begin >::value(), boost::units::detail::name_string_impl< N >::apply< Begin >::value(), boost::math::variance(), boost::container::vector< Value, container_detail::static_storage_allocator< Value, Capacity > >::vector(), boost::vf2_graph_iso(), boost::detail::vf2_subgraph_morphism(), boost::msm::back::state_machine< A0, A1, A2, A3, A4 >::visit_current_states(), boost::spirit::repository::qi::kwd_parser< Subject, KeywordType, LoopIter, NoCase, Distinct >::what(), boost::spirit::repository::qi::complex_kwd_parser< Subject, KeywordType, LoopIter, Distinct >::what(), boost::iostreams::tee_device< Device, Sink >::write(), boost::write_graphml(), boost::write_graphviz(), boost::polygon::point_data< coordinate_type >::x(), boost::polygon::anisotropic_scale_factor< scale_factor_type >::x(), boost::polygon::point_data< coordinate_type >::y(), boost::polygon::anisotropic_scale_factor< scale_factor_type >::y(), and boost::statechart::simple_state< MostDerived, Context, InnerInitial, historyMode >::~simple_state().
typed_value<T>* boost::program_options::value | ( | T * | v | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
typed_value<T, wchar_t>* boost::program_options::wvalue | ( | ) |
Creates a typed_value<T> instance.
This function is the primary method to create value_semantic instance for a specific type, which can later be passed to 'option_description' constructor.
typed_value<T, wchar_t>* boost::program_options::wvalue | ( | T * | v | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.