NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
any-lite.hpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2016-2018 Martin Moene
3 //
4 // https://github.com/martinmoene/any-lite
5 //
6 // Distributed under the Boost Software License, Version 1.0.
7 // (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 
9 #pragma once
10 
11 #ifndef NONSTD_ANY_LITE_HPP
12 #define NONSTD_ANY_LITE_HPP
13 
14 #define any_lite_MAJOR 0
15 #define any_lite_MINOR 4
16 #define any_lite_PATCH 0
17 
18 #define any_lite_VERSION any_STRINGIFY(any_lite_MAJOR) "." any_STRINGIFY(any_lite_MINOR) "." any_STRINGIFY(any_lite_PATCH)
19 
20 #define any_STRINGIFY( x ) any_STRINGIFY_( x )
21 #define any_STRINGIFY_( x ) #x
22 
23 // any-lite configuration:
24 
25 #define any_ANY_DEFAULT 0
26 #define any_ANY_NONSTD 1
27 #define any_ANY_STD 2
28 
29 // tweak header support:
30 
31 #ifdef __has_include
32 # if __has_include(<nonstd/any.tweak.hpp>)
33 # include <nonstd/any.tweak.hpp>
34 # endif
35 #define any_HAVE_TWEAK_HEADER 1
36 #else
37 #define any_HAVE_TWEAK_HEADER 0
38 //# pragma message("any.hpp: Note: Tweak header not supported.")
39 #endif
40 
41 // any selection and configuration:
42 
43 #if !defined( any_CONFIG_SELECT_ANY )
44 # define any_CONFIG_SELECT_ANY ( any_HAVE_STD_ANY ? any_ANY_STD : any_ANY_NONSTD )
45 #endif
46 
47 // Control presence of exception handling (try and auto discover):
48 
49 #ifndef any_CONFIG_NO_EXCEPTIONS
50 # if _MSC_VER
51 # include <cstddef> // for _HAS_EXCEPTIONS
52 # endif
53 # if defined(__cpp_exceptions) || defined(__EXCEPTIONS) || (_HAS_EXCEPTIONS)
54 # define any_CONFIG_NO_EXCEPTIONS 0
55 # else
56 # define any_CONFIG_NO_EXCEPTIONS 1
57 # endif
58 #endif
59 
60 // C++ language version detection (C++20 is speculative):
61 // Note: VC14.0/1900 (VS2015) lacks too much from C++14.
62 
63 #ifndef any_CPLUSPLUS
64 # if defined(_MSVC_LANG ) && !defined(__clang__)
65 # define any_CPLUSPLUS (_MSC_VER == 1900 ? 201103L : _MSVC_LANG )
66 # else
67 # define any_CPLUSPLUS __cplusplus
68 # endif
69 #endif
70 
71 #define any_CPP98_OR_GREATER ( any_CPLUSPLUS >= 199711L )
72 #define any_CPP11_OR_GREATER ( any_CPLUSPLUS >= 201103L )
73 #define any_CPP14_OR_GREATER ( any_CPLUSPLUS >= 201402L )
74 #define any_CPP17_OR_GREATER ( any_CPLUSPLUS >= 201703L )
75 #define any_CPP20_OR_GREATER ( any_CPLUSPLUS >= 202000L )
76 
77 // Use C++17 std::any if available and requested:
78 
79 #if any_CPP17_OR_GREATER && defined(__has_include )
80 # if __has_include( <any> )
81 # define any_HAVE_STD_ANY 1
82 # else
83 # define any_HAVE_STD_ANY 0
84 # endif
85 #else
86 # define any_HAVE_STD_ANY 0
87 #endif
88 
89 #define any_USES_STD_ANY ( (any_CONFIG_SELECT_ANY == any_ANY_STD) || ((any_CONFIG_SELECT_ANY == any_ANY_DEFAULT) && any_HAVE_STD_ANY) )
90 
91 //
92 // in_place: code duplicated in any-lite, expected-lite, optional-lite, value-ptr-lite, variant-lite:
93 //
94 
95 #ifndef nonstd_lite_HAVE_IN_PLACE_TYPES
96 #define nonstd_lite_HAVE_IN_PLACE_TYPES 1
97 
98 // C++17 std::in_place in <utility>:
99 
100 #if any_CPP17_OR_GREATER
101 
102 #include <utility>
103 
104 namespace nonstd {
105 
106 using std::in_place;
107 using std::in_place_type;
108 using std::in_place_index;
109 using std::in_place_t;
110 using std::in_place_type_t;
111 using std::in_place_index_t;
112 
113 #define nonstd_lite_in_place_t( T) std::in_place_t
114 #define nonstd_lite_in_place_type_t( T) std::in_place_type_t<T>
115 #define nonstd_lite_in_place_index_t(K) std::in_place_index_t<K>
116 
117 #define nonstd_lite_in_place( T) std::in_place_t{}
118 #define nonstd_lite_in_place_type( T) std::in_place_type_t<T>{}
119 #define nonstd_lite_in_place_index(K) std::in_place_index_t<K>{}
120 
121 } // namespace nonstd
122 
123 #else // any_CPP17_OR_GREATER
124 
125 #include <cstddef>
126 
127 namespace nonstd {
128 namespace detail {
129 
130 template< class T >
132 
133 template< std::size_t K >
135 
136 } // namespace detail
137 
138 struct in_place_t {};
139 
140 template< class T >
142 {
143  return in_place_t();
144 }
145 
146 template< std::size_t K >
148 {
149  return in_place_t();
150 }
151 
152 template< class T >
154 {
155  return in_place_t();
156 }
157 
158 template< std::size_t K >
160 {
161  return in_place_t();
162 }
163 
164 // mimic templated typedef:
165 
166 #define nonstd_lite_in_place_t( T) nonstd::in_place_t(&)( nonstd::detail::in_place_type_tag<T> )
167 #define nonstd_lite_in_place_type_t( T) nonstd::in_place_t(&)( nonstd::detail::in_place_type_tag<T> )
168 #define nonstd_lite_in_place_index_t(K) nonstd::in_place_t(&)( nonstd::detail::in_place_index_tag<K> )
169 
170 #define nonstd_lite_in_place( T) nonstd::in_place_type<T>
171 #define nonstd_lite_in_place_type( T) nonstd::in_place_type<T>
172 #define nonstd_lite_in_place_index(K) nonstd::in_place_index<K>
173 
174 } // namespace nonstd
175 
176 #endif // any_CPP17_OR_GREATER
177 #endif // nonstd_lite_HAVE_IN_PLACE_TYPES
178 
179 //
180 // Using std::any:
181 //
182 
183 #if any_USES_STD_ANY
184 
185 #include <any>
186 #include <utility>
187 
188 namespace nonstd {
189 
190  using std::any;
191  using std::any_cast;
192  using std::make_any;
193  using std::swap;
194  using std::bad_any_cast;
195 }
196 
197 #else // any_USES_STD_ANY
198 
199 #include <utility>
200 
201 // Compiler versions:
202 //
203 // MSVC++ 6.0 _MSC_VER == 1200 any_COMPILER_MSVC_VERSION == 60 (Visual Studio 6.0)
204 // MSVC++ 7.0 _MSC_VER == 1300 any_COMPILER_MSVC_VERSION == 70 (Visual Studio .NET 2002)
205 // MSVC++ 7.1 _MSC_VER == 1310 any_COMPILER_MSVC_VERSION == 71 (Visual Studio .NET 2003)
206 // MSVC++ 8.0 _MSC_VER == 1400 any_COMPILER_MSVC_VERSION == 80 (Visual Studio 2005)
207 // MSVC++ 9.0 _MSC_VER == 1500 any_COMPILER_MSVC_VERSION == 90 (Visual Studio 2008)
208 // MSVC++ 10.0 _MSC_VER == 1600 any_COMPILER_MSVC_VERSION == 100 (Visual Studio 2010)
209 // MSVC++ 11.0 _MSC_VER == 1700 any_COMPILER_MSVC_VERSION == 110 (Visual Studio 2012)
210 // MSVC++ 12.0 _MSC_VER == 1800 any_COMPILER_MSVC_VERSION == 120 (Visual Studio 2013)
211 // MSVC++ 14.0 _MSC_VER == 1900 any_COMPILER_MSVC_VERSION == 140 (Visual Studio 2015)
212 // MSVC++ 14.1 _MSC_VER >= 1910 any_COMPILER_MSVC_VERSION == 141 (Visual Studio 2017)
213 // MSVC++ 14.2 _MSC_VER >= 1920 any_COMPILER_MSVC_VERSION == 142 (Visual Studio 2019)
214 
215 #if defined(_MSC_VER ) && !defined(__clang__)
216 # define any_COMPILER_MSVC_VER (_MSC_VER )
217 # define any_COMPILER_MSVC_VERSION (_MSC_VER / 10 - 10 * ( 5 + (_MSC_VER < 1900 ) ) )
218 #else
219 # define any_COMPILER_MSVC_VER 0
220 # define any_COMPILER_MSVC_VERSION 0
221 #endif
222 
223 #define any_COMPILER_VERSION( major, minor, patch ) ( 10 * ( 10 * (major) + (minor) ) + (patch) )
224 
225 #if defined(__clang__)
226 # define any_COMPILER_CLANG_VERSION any_COMPILER_VERSION(__clang_major__, __clang_minor__, __clang_patchlevel__)
227 #else
228 # define any_COMPILER_CLANG_VERSION 0
229 #endif
230 
231 #if defined(__GNUC__) && !defined(__clang__)
232 # define any_COMPILER_GNUC_VERSION any_COMPILER_VERSION(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
233 #else
234 # define any_COMPILER_GNUC_VERSION 0
235 #endif
236 
237 // half-open range [lo..hi):
238 //#define any_BETWEEN( v, lo, hi ) ( (lo) <= (v) && (v) < (hi) )
239 
240 // Presence of language and library features:
241 
242 #define any_HAVE( feature ) ( any_HAVE_##feature )
243 
244 #ifdef _HAS_CPP0X
245 # define any_HAS_CPP0X _HAS_CPP0X
246 #else
247 # define any_HAS_CPP0X 0
248 #endif
249 
250 #define any_CPP11_90 (any_CPP11_OR_GREATER || any_COMPILER_MSVC_VER >= 1500)
251 #define any_CPP11_100 (any_CPP11_OR_GREATER || any_COMPILER_MSVC_VER >= 1600)
252 #define any_CPP11_120 (any_CPP11_OR_GREATER || any_COMPILER_MSVC_VER >= 1800)
253 #define any_CPP11_140 (any_CPP11_OR_GREATER || any_COMPILER_MSVC_VER >= 1900)
254 
255 #define any_CPP14_000 (any_CPP14_OR_GREATER)
256 #define any_CPP17_000 (any_CPP17_OR_GREATER)
257 
258 // Presence of C++11 language features:
259 
260 #define any_HAVE_CONSTEXPR_11 any_CPP11_140
261 #define any_HAVE_DEFAULT_FUNCTION_TEMPLATE_ARG \
262  any_CPP11_120
263 #define any_HAVE_INITIALIZER_LIST any_CPP11_120
264 #define any_HAVE_NOEXCEPT any_CPP11_140
265 #define any_HAVE_NULLPTR any_CPP11_100
266 #define any_HAVE_TYPE_TRAITS any_CPP11_90
267 #define any_HAVE_STATIC_ASSERT any_CPP11_100
268 #define any_HAVE_ADD_CONST any_CPP11_90
269 #define any_HAVE_OVERRIDE any_CPP11_90
270 #define any_HAVE_REMOVE_REFERENCE any_CPP11_90
271 
272 #define any_HAVE_TR1_ADD_CONST (!! any_COMPILER_GNUC_VERSION )
273 #define any_HAVE_TR1_REMOVE_REFERENCE (!! any_COMPILER_GNUC_VERSION )
274 #define any_HAVE_TR1_TYPE_TRAITS (!! any_COMPILER_GNUC_VERSION )
275 
276 // Presence of C++14 language features:
277 
278 #define any_HAVE_CONSTEXPR_14 any_CPP14_000
279 
280 // Presence of C++17 language features:
281 
282 #define any_HAVE_NODISCARD any_CPP17_000
283 
284 // Presence of C++ language features:
285 
286 #if any_HAVE_CONSTEXPR_11
287 # define any_constexpr constexpr
288 #else
289 # define any_constexpr /*constexpr*/
290 #endif
291 
292 #if any_HAVE_CONSTEXPR_14
293 # define any_constexpr14 constexpr
294 #else
295 # define any_constexpr14 /*constexpr*/
296 #endif
297 
298 #if any_HAVE_NOEXCEPT
299 # define any_noexcept noexcept
300 #else
301 # define any_noexcept /*noexcept*/
302 #endif
303 
304 #if any_HAVE_NULLPTR
305 # define any_nullptr nullptr
306 #else
307 # define any_nullptr NULL
308 #endif
309 
310 #if any_HAVE_NODISCARD
311 # define any_nodiscard [[nodiscard]]
312 #else
313 # define any_nodiscard /*[[nodiscard]]*/
314 #endif
315 
316 #if any_HAVE_OVERRIDE
317 # define any_override override
318 #else
319 # define any_override /*override*/
320 #endif
321 
322 // additional includes:
323 
324 #if any_CONFIG_NO_EXCEPTIONS
325 # include <cassert>
326 #else
327 # include <typeinfo>
328 #endif
329 
330 #if ! any_HAVE_NULLPTR
331 # include <cstddef>
332 #endif
333 
334 #if any_HAVE_INITIALIZER_LIST
335 # include <initializer_list>
336 #endif
337 
338 #if any_HAVE_TYPE_TRAITS
339 # include <type_traits>
340 #elif any_HAVE_TR1_TYPE_TRAITS
341 # include <tr1/type_traits>
342 #endif
343 
344 // Method enabling
345 
346 #if any_CPP11_OR_GREATER
347 
348 #define any_REQUIRES_0(...) \
349  template< bool B = (__VA_ARGS__), typename std::enable_if<B, int>::type = 0 >
350 
351 #define any_REQUIRES_T(...) \
352  , typename std::enable_if< (__VA_ARGS__), int >::type = 0
353 
354 #define any_REQUIRES_R(R, ...) \
355  typename std::enable_if<__VA_ARGS__, R>::type
356 
357 #define any_REQUIRES_A(...) \
358  , typename std::enable_if<__VA_ARGS__, void*>::type = nullptr
359 
360 #endif
361 
362 //
363 // any:
364 //
365 
366 namespace nonstd { namespace any_lite {
367 
368 // C++11 emulation:
369 
370 namespace std11 {
371 
372 #if any_HAVE_ADD_CONST
373 
374 using std::add_const;
375 
376 #elif any_HAVE_TR1_ADD_CONST
377 
378 using std::tr1::add_const;
379 
380 #else
381 
382 template< class T > struct add_const { typedef const T type; };
383 
384 #endif // any_HAVE_ADD_CONST
385 
386 #if any_HAVE_REMOVE_REFERENCE
387 
388 using std::remove_reference;
389 
390 #elif any_HAVE_TR1_REMOVE_REFERENCE
391 
392 using std::tr1::remove_reference;
393 
394 #else
395 
396 template< class T > struct remove_reference { typedef T type; };
397 template< class T > struct remove_reference<T&> { typedef T type; };
398 
399 #endif // any_HAVE_REMOVE_REFERENCE
400 
401 } // namespace std11
402 
403 namespace detail {
404 
405 // for any_REQUIRES_T
406 
407 /*enum*/ class enabler{};
408 
409 } // namespace detail
410 
411 #if ! any_CONFIG_NO_EXCEPTIONS
412 
413 class bad_any_cast : public std::bad_cast
414 {
415 public:
416 #if any_CPP11_OR_GREATER
417  virtual const char* what() const any_noexcept any_override
418 #else
419  virtual const char* what() const throw()
420 #endif
421  {
422  return "any-lite: bad any_cast";
423  }
424 };
425 
426 #endif // any_CONFIG_NO_EXCEPTIONS
427 
428 class any
429 {
430 public:
432  : content( any_nullptr )
433  {}
434 
435  any( any const & other )
436  : content( other.content ? other.content->clone() : any_nullptr )
437  {}
438 
439 #if any_CPP11_OR_GREATER
440 
441  any( any && other ) any_noexcept
442  : content( std::move( other.content ) )
443  {
444  other.content = any_nullptr;
445  }
446 
447  template<
448  class ValueType, class T = typename std::decay<ValueType>::type
449  any_REQUIRES_T( ! std::is_same<T, any>::value )
450  >
451  any( ValueType && value ) any_noexcept
452  : content( new holder<T>( std::forward<ValueType>( value ) ) )
453  {}
454 
455  template<
456  class T, class... Args
458  >
459  explicit any( nonstd_lite_in_place_type_t(T), Args&&... args )
460  : content( new holder<T>( T( std::forward<Args>(args)... ) ) )
461  {}
462 
463  template<
464  class T, class U, class... Args
465  any_REQUIRES_T( std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value )
466  >
467  explicit any( nonstd_lite_in_place_type_t(T), std::initializer_list<U> il, Args&&... args )
468  : content( new holder<T>( T( il, std::forward<Args>(args)... ) ) )
469  {}
470 
471 #else
472 
473  template< class ValueType >
474  any( ValueType const & value )
475  : content( new holder<ValueType>( value ) )
476  {}
477 
478 #endif // any_CPP11_OR_GREATER
479 
481  {
482  reset();
483  }
484 
485  any & operator=( any const & other )
486  {
487  any( other ).swap( *this );
488  return *this;
489  }
490 
491 #if any_CPP11_OR_GREATER
492 
493  any & operator=( any && other ) any_noexcept
494  {
495  any( std::move( other ) ).swap( *this );
496  return *this;
497  }
498 
499  template<
500  class ValueType, class T = typename std::decay<ValueType>::type
501  any_REQUIRES_T( ! std::is_same<T, any>::value )
502  >
503  any & operator=( T && value )
504  {
505  any( std::move( value ) ).swap( *this );
506  return *this;
507  }
508 
509  template< class T, class... Args >
510  void emplace( Args && ... args )
511  {
512  any( T( std::forward<Args>(args)... ) ).swap( *this );
513  }
514 
515  template<
516  class T, class U, class... Args
517  any_REQUIRES_T( std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value )
518  >
519  void emplace( std::initializer_list<U> il, Args&&... args )
520  {
521  any( T( il, std::forward<Args>(args)... ) ).swap( *this );
522  }
523 
524 #else
525 
526  template< class ValueType >
527  any & operator=( ValueType const & value )
528  {
529  any( value ).swap( *this );
530  return *this;
531  }
532 
533 #endif // any_CPP11_OR_GREATER
534 
536  {
537  delete content; content = any_nullptr;
538  }
539 
540  void swap( any & other ) any_noexcept
541  {
542  std::swap( content, other.content );
543  }
544 
545  bool has_value() const any_noexcept
546  {
547  return content != any_nullptr;
548  }
549 
550  const std::type_info & type() const any_noexcept
551  {
552  return has_value() ? content->type() : typeid( void );
553  }
554 
555  //
556  // non-standard:
557  //
558 
559  template< class ValueType >
560  const ValueType * to_ptr() const
561  {
562  return &( static_cast<holder<ValueType> *>( content )->held );
563  }
564 
565  template< class ValueType >
566  ValueType * to_ptr()
567  {
568  return &( static_cast<holder<ValueType> *>( content )->held );
569  }
570 
571 private:
572  class placeholder
573  {
574  public:
575  virtual ~placeholder()
576  {
577  }
578 
579  virtual std::type_info const & type() const = 0;
580 
581  virtual placeholder * clone() const = 0;
582  };
583 
584  template< typename ValueType >
585  class holder : public placeholder
586  {
587  public:
588  holder( ValueType const & value )
589  : held( value )
590  {}
591 
592 #if any_CPP11_OR_GREATER
593  holder( ValueType && value )
594  : held( std::move( value ) )
595  {}
596 #endif
597 
598  virtual std::type_info const & type() const any_override
599  {
600  return typeid( ValueType );
601  }
602 
603  virtual placeholder * clone() const any_override
604  {
605  return new holder( held );
606  }
607 
608  ValueType held;
609  };
610 
611  placeholder * content;
612 };
613 
614 inline void swap( any & x, any & y ) any_noexcept
615 {
616  x.swap( y );
617 }
618 
619 #if any_CPP11_OR_GREATER
620 
621 template< class T, class ...Args >
622 inline any make_any( Args&& ...args )
623 {
624  return any( nonstd_lite_in_place_type(T), std::forward<Args>(args)...);
625 }
626 
627 template< class T, class U, class ...Args >
628 inline any make_any( std::initializer_list<U> il, Args&& ...args )
629 {
630  return any( nonstd_lite_in_place_type(T), il, std::forward<Args>(args)...);
631 }
632 
633 #endif // any_CPP11_OR_GREATER
634 
635 template<
636  class ValueType
637 #if any_HAVE_DEFAULT_FUNCTION_TEMPLATE_ARG
638 // any_REQUIRES_T(...) Allow for VC120 (VS2013):
640 #endif
641 >
642 any_nodiscard inline ValueType any_cast( any const & operand )
643 {
644  const ValueType * result = any_cast< typename std11::add_const< typename std11::remove_reference<ValueType>::type >::type >( &operand );
645 
646 #if any_CONFIG_NO_EXCEPTIONS
647  assert( result );
648 #else
649  if ( ! result )
650  {
651  throw bad_any_cast();
652  }
653 #endif
654 
655  return *result;
656 }
657 
658 template<
659  class ValueType
660 #if any_HAVE_DEFAULT_FUNCTION_TEMPLATE_ARG
661 // any_REQUIRES_T(...) Allow for VC120 (VS2013):
663 #endif
664 >
665 any_nodiscard inline ValueType any_cast( any & operand )
666 {
667  const ValueType * result = any_cast< typename std11::remove_reference<ValueType>::type >( &operand );
668 
669 #if any_CONFIG_NO_EXCEPTIONS
670  assert( result );
671 #else
672  if ( ! result )
673  {
674  throw bad_any_cast();
675  }
676 #endif
677 
678  return *result;
679 }
680 
681 #if any_CPP11_OR_GREATER
682 
683 template<
684  class ValueType
685 #if any_HAVE_DEFAULT_FUNCTION_TEMPLATE_ARG
687 #endif
688 >
689 any_nodiscard inline ValueType any_cast( any && operand )
690 {
691  const ValueType * result = any_cast< typename std11::remove_reference<ValueType>::type >( &operand );
692 
693 #if any_CONFIG_NO_EXCEPTIONS
694  assert( result );
695 #else
696  if ( ! result )
697  {
698  throw bad_any_cast();
699  }
700 #endif
701 
702  return *result;
703 }
704 
705 #endif // any_CPP11_OR_GREATER
706 
707 template< class ValueType >
708 any_nodiscard inline ValueType const * any_cast( any const * operand ) any_noexcept
709 {
710  return operand != any_nullptr && operand->type() == typeid(ValueType) ? operand->to_ptr<ValueType>() : any_nullptr;
711 }
712 
713 template<class ValueType >
714 any_nodiscard inline ValueType * any_cast( any * operand ) any_noexcept
715 {
716  return operand != any_nullptr && operand->type() == typeid(ValueType) ? operand->to_ptr<ValueType>() : any_nullptr;
717 }
718 
719 } // namespace any_lite
720 
721 using namespace any_lite;
722 
723 } // namespace nonstd
724 
725 #endif // any_USES_STD_ANY
726 
727 #endif // NONSTD_ANY_LITE_HPP
void swap(any &x, any &y) any_noexcept
Definition: any-lite.hpp:614
bool has_value() const any_noexcept
Definition: any-lite.hpp:545
#define any_nullptr
Definition: any-lite.hpp:307
in_place_t in_place(detail::in_place_index_tag< K >=detail::in_place_index_tag< K >())
Definition: any-lite.hpp:147
any(ValueType const &value)
Definition: any-lite.hpp:474
void reset() any_noexcept
Definition: any-lite.hpp:535
in_place_t in_place_index(detail::in_place_index_tag< K >=detail::in_place_index_tag< K >())
Definition: any-lite.hpp:159
#define nonstd_lite_in_place_type_t(T)
Definition: any-lite.hpp:167
const ValueType * to_ptr() const
Definition: any-lite.hpp:560
any(any const &other)
Definition: any-lite.hpp:435
#define any_constexpr
Definition: any-lite.hpp:289
#define nonstd_lite_in_place_type(T)
Definition: any-lite.hpp:171
#define any_noexcept
Definition: any-lite.hpp:301
any & operator=(any const &other)
Definition: any-lite.hpp:485
ValueType * to_ptr()
Definition: any-lite.hpp:566
any_nodiscard ValueType * any_cast(any *operand) any_noexcept
Definition: any-lite.hpp:714
#define any_override
Definition: any-lite.hpp:319
any_constexpr any() any_noexcept
Definition: any-lite.hpp:431
in_place_t in_place_type(detail::in_place_type_tag< T >=detail::in_place_type_tag< T >())
Definition: any-lite.hpp:153
#define any_nodiscard
Definition: any-lite.hpp:313
any & operator=(ValueType const &value)
Definition: any-lite.hpp:527
void swap(any &other) any_noexcept
Definition: any-lite.hpp:540
const std::type_info & type() const any_noexcept
Definition: any-lite.hpp:550
in_place_t in_place(detail::in_place_type_tag< T >=detail::in_place_type_tag< T >())
Definition: any-lite.hpp:141