├── C++11 ├── Language │ ├── Attributes.h │ ├── ConstExpr.h │ ├── ConvertingConstructors.h │ ├── DeclTypes.h │ ├── DefaultFunctions.h │ ├── DelegatingConstructors.h │ ├── DeletedFunctions.h │ ├── ExplicitConversionFunctions.h │ ├── ExplicitVirtualOverrides.h │ ├── FinalSpecifier.h │ ├── InitialiserLists.h │ ├── InlineNamespaces.h │ ├── LambdaExpressions.h │ ├── MoveSemantics.h │ ├── NonStaticMemberInitialiser.h │ ├── Nullptr.h │ ├── RValueReferences.h │ ├── RangeBasedLoops.h │ ├── RightAngleBrackets.h │ ├── SpecialMoveSemanticFunctions.h │ ├── StaticAssertions.h │ ├── StronglyTypedEnums.h │ ├── TemplateAliases.h │ ├── UserDefinedLiterals.h │ ├── VariadicTemplates.h │ └── auto.h └── Library │ ├── Algorithm.h │ ├── Array.h │ ├── Atomic.h │ ├── CodeCVT_utf16.h │ ├── CodecvtUtf8.h │ ├── CodecvtUtf8Utf16.h │ ├── CopyN.h │ ├── Forward.h │ ├── ForwardList.h │ ├── MakeShared.h │ ├── MemoryModel.h │ ├── Mutex.h │ ├── Random.h │ ├── ScopedAllocator.h │ ├── SmartPointers.h │ ├── SystemError.h │ ├── Thread.h │ ├── ToString.h │ ├── TypeTraits.h │ ├── UnorderedContainers.h │ ├── WbufferConvert.h │ ├── WstringConvert.h │ ├── async.h │ ├── cfenv.h │ ├── chrono.h │ ├── cinttypes.h │ ├── codecvt.h │ ├── cstdint.h │ ├── cuchar.h │ ├── future.h │ ├── hash.h │ ├── move.h │ ├── regex.h │ ├── tie.h │ ├── tuples.h │ └── typeindex.h ├── C++14 ├── Language │ ├── BinaryLiterals.h │ ├── ConstExprRelaxed.h │ ├── DeclTypeAuto.h │ ├── GenericLambda.h │ ├── LambdaCaptureInit.h │ ├── ReturnTypeDeduction.h │ └── VariableTemplates.h └── Library │ ├── CompileTimeIntegers.h │ ├── Exchange.h │ ├── MakeUnique.h │ ├── Ranges.h │ ├── ReverseIterator.h │ ├── Swap.h │ └── UserLiterals.h ├── C++17 ├── Language │ ├── AutoDeductionFromBraceInitList.h │ ├── ConstExprIf.h │ ├── ConstExprLambda.h │ ├── FoldingExpressions.h │ ├── InitialisationOfEnums.h │ ├── InlineVariables.h │ ├── LambdaCaptureByValue.h │ ├── NestedNamespaces.h │ ├── NontypeTemplateParametersWithAuto.h │ ├── SelectionStatementsWithInitialiser.h │ ├── StructuredBindings.h │ ├── TemplateArgumentDeduction.h │ └── UTF8CharacterLiterals.h └── Library │ ├── Any.h │ ├── Apply.h │ ├── Clamp.h │ ├── CommonDenominators.h │ ├── ExecutionPolicy.h │ ├── Filesystem.h │ ├── Invoke.h │ ├── MapSetSplicing.h │ ├── Optional.h │ ├── Sampling.h │ ├── Search.h │ ├── StringConversion.h │ ├── StringView.h │ └── Variant.h ├── README.md ├── cpp_11_lib.csv ├── cpp_14_lib.csv ├── cpp_17_lib.csv ├── main.cpp ├── premake5.exe └── premake5.lua /C++11/Language/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/Attributes.h -------------------------------------------------------------------------------- /C++11/Language/ConstExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/ConstExpr.h -------------------------------------------------------------------------------- /C++11/Language/ConvertingConstructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/ConvertingConstructors.h -------------------------------------------------------------------------------- /C++11/Language/DeclTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/DeclTypes.h -------------------------------------------------------------------------------- /C++11/Language/DefaultFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/DefaultFunctions.h -------------------------------------------------------------------------------- /C++11/Language/DelegatingConstructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/DelegatingConstructors.h -------------------------------------------------------------------------------- /C++11/Language/DeletedFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/DeletedFunctions.h -------------------------------------------------------------------------------- /C++11/Language/ExplicitConversionFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/ExplicitConversionFunctions.h -------------------------------------------------------------------------------- /C++11/Language/ExplicitVirtualOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/ExplicitVirtualOverrides.h -------------------------------------------------------------------------------- /C++11/Language/FinalSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/FinalSpecifier.h -------------------------------------------------------------------------------- /C++11/Language/InitialiserLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/InitialiserLists.h -------------------------------------------------------------------------------- /C++11/Language/InlineNamespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/InlineNamespaces.h -------------------------------------------------------------------------------- /C++11/Language/LambdaExpressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/LambdaExpressions.h -------------------------------------------------------------------------------- /C++11/Language/MoveSemantics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/MoveSemantics.h -------------------------------------------------------------------------------- /C++11/Language/NonStaticMemberInitialiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/NonStaticMemberInitialiser.h -------------------------------------------------------------------------------- /C++11/Language/Nullptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/Nullptr.h -------------------------------------------------------------------------------- /C++11/Language/RValueReferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/RValueReferences.h -------------------------------------------------------------------------------- /C++11/Language/RangeBasedLoops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/RangeBasedLoops.h -------------------------------------------------------------------------------- /C++11/Language/RightAngleBrackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/RightAngleBrackets.h -------------------------------------------------------------------------------- /C++11/Language/SpecialMoveSemanticFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/SpecialMoveSemanticFunctions.h -------------------------------------------------------------------------------- /C++11/Language/StaticAssertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/StaticAssertions.h -------------------------------------------------------------------------------- /C++11/Language/StronglyTypedEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/StronglyTypedEnums.h -------------------------------------------------------------------------------- /C++11/Language/TemplateAliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/TemplateAliases.h -------------------------------------------------------------------------------- /C++11/Language/UserDefinedLiterals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/UserDefinedLiterals.h -------------------------------------------------------------------------------- /C++11/Language/VariadicTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/VariadicTemplates.h -------------------------------------------------------------------------------- /C++11/Language/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Language/auto.h -------------------------------------------------------------------------------- /C++11/Library/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Algorithm.h -------------------------------------------------------------------------------- /C++11/Library/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Array.h -------------------------------------------------------------------------------- /C++11/Library/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Atomic.h -------------------------------------------------------------------------------- /C++11/Library/CodeCVT_utf16.h: -------------------------------------------------------------------------------- 1 | //TODO 2 | //http://en.cppreference.com/w/cpp/locale/codecvt_utf16 -------------------------------------------------------------------------------- /C++11/Library/CodecvtUtf8.h: -------------------------------------------------------------------------------- 1 | //TODO 2 | //http://en.cppreference.com/w/cpp/locale/codecvt_utf8 -------------------------------------------------------------------------------- /C++11/Library/CodecvtUtf8Utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/CodecvtUtf8Utf16.h -------------------------------------------------------------------------------- /C++11/Library/CopyN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/CopyN.h -------------------------------------------------------------------------------- /C++11/Library/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Forward.h -------------------------------------------------------------------------------- /C++11/Library/ForwardList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/ForwardList.h -------------------------------------------------------------------------------- /C++11/Library/MakeShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/MakeShared.h -------------------------------------------------------------------------------- /C++11/Library/MemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/MemoryModel.h -------------------------------------------------------------------------------- /C++11/Library/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Mutex.h -------------------------------------------------------------------------------- /C++11/Library/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Random.h -------------------------------------------------------------------------------- /C++11/Library/ScopedAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/ScopedAllocator.h -------------------------------------------------------------------------------- /C++11/Library/SmartPointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/SmartPointers.h -------------------------------------------------------------------------------- /C++11/Library/SystemError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/SystemError.h -------------------------------------------------------------------------------- /C++11/Library/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/Thread.h -------------------------------------------------------------------------------- /C++11/Library/ToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/ToString.h -------------------------------------------------------------------------------- /C++11/Library/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/TypeTraits.h -------------------------------------------------------------------------------- /C++11/Library/UnorderedContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/UnorderedContainers.h -------------------------------------------------------------------------------- /C++11/Library/WbufferConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/WbufferConvert.h -------------------------------------------------------------------------------- /C++11/Library/WstringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/WstringConvert.h -------------------------------------------------------------------------------- /C++11/Library/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/async.h -------------------------------------------------------------------------------- /C++11/Library/cfenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/cfenv.h -------------------------------------------------------------------------------- /C++11/Library/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/chrono.h -------------------------------------------------------------------------------- /C++11/Library/cinttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/cinttypes.h -------------------------------------------------------------------------------- /C++11/Library/codecvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/codecvt.h -------------------------------------------------------------------------------- /C++11/Library/cstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/cstdint.h -------------------------------------------------------------------------------- /C++11/Library/cuchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/cuchar.h -------------------------------------------------------------------------------- /C++11/Library/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/future.h -------------------------------------------------------------------------------- /C++11/Library/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/hash.h -------------------------------------------------------------------------------- /C++11/Library/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/move.h -------------------------------------------------------------------------------- /C++11/Library/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/regex.h -------------------------------------------------------------------------------- /C++11/Library/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/tie.h -------------------------------------------------------------------------------- /C++11/Library/tuples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/tuples.h -------------------------------------------------------------------------------- /C++11/Library/typeindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++11/Library/typeindex.h -------------------------------------------------------------------------------- /C++14/Language/BinaryLiterals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/BinaryLiterals.h -------------------------------------------------------------------------------- /C++14/Language/ConstExprRelaxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/ConstExprRelaxed.h -------------------------------------------------------------------------------- /C++14/Language/DeclTypeAuto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/DeclTypeAuto.h -------------------------------------------------------------------------------- /C++14/Language/GenericLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/GenericLambda.h -------------------------------------------------------------------------------- /C++14/Language/LambdaCaptureInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/LambdaCaptureInit.h -------------------------------------------------------------------------------- /C++14/Language/ReturnTypeDeduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/ReturnTypeDeduction.h -------------------------------------------------------------------------------- /C++14/Language/VariableTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Language/VariableTemplates.h -------------------------------------------------------------------------------- /C++14/Library/CompileTimeIntegers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/CompileTimeIntegers.h -------------------------------------------------------------------------------- /C++14/Library/Exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/Exchange.h -------------------------------------------------------------------------------- /C++14/Library/MakeUnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/MakeUnique.h -------------------------------------------------------------------------------- /C++14/Library/Ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/Ranges.h -------------------------------------------------------------------------------- /C++14/Library/ReverseIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/ReverseIterator.h -------------------------------------------------------------------------------- /C++14/Library/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/Swap.h -------------------------------------------------------------------------------- /C++14/Library/UserLiterals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++14/Library/UserLiterals.h -------------------------------------------------------------------------------- /C++17/Language/AutoDeductionFromBraceInitList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/AutoDeductionFromBraceInitList.h -------------------------------------------------------------------------------- /C++17/Language/ConstExprIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/ConstExprIf.h -------------------------------------------------------------------------------- /C++17/Language/ConstExprLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/ConstExprLambda.h -------------------------------------------------------------------------------- /C++17/Language/FoldingExpressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/FoldingExpressions.h -------------------------------------------------------------------------------- /C++17/Language/InitialisationOfEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/InitialisationOfEnums.h -------------------------------------------------------------------------------- /C++17/Language/InlineVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/InlineVariables.h -------------------------------------------------------------------------------- /C++17/Language/LambdaCaptureByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/LambdaCaptureByValue.h -------------------------------------------------------------------------------- /C++17/Language/NestedNamespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/NestedNamespaces.h -------------------------------------------------------------------------------- /C++17/Language/NontypeTemplateParametersWithAuto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/NontypeTemplateParametersWithAuto.h -------------------------------------------------------------------------------- /C++17/Language/SelectionStatementsWithInitialiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/SelectionStatementsWithInitialiser.h -------------------------------------------------------------------------------- /C++17/Language/StructuredBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/StructuredBindings.h -------------------------------------------------------------------------------- /C++17/Language/TemplateArgumentDeduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/TemplateArgumentDeduction.h -------------------------------------------------------------------------------- /C++17/Language/UTF8CharacterLiterals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Language/UTF8CharacterLiterals.h -------------------------------------------------------------------------------- /C++17/Library/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Any.h -------------------------------------------------------------------------------- /C++17/Library/Apply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Apply.h -------------------------------------------------------------------------------- /C++17/Library/Clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Clamp.h -------------------------------------------------------------------------------- /C++17/Library/CommonDenominators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/CommonDenominators.h -------------------------------------------------------------------------------- /C++17/Library/ExecutionPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/ExecutionPolicy.h -------------------------------------------------------------------------------- /C++17/Library/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Filesystem.h -------------------------------------------------------------------------------- /C++17/Library/Invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Invoke.h -------------------------------------------------------------------------------- /C++17/Library/MapSetSplicing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/MapSetSplicing.h -------------------------------------------------------------------------------- /C++17/Library/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Optional.h -------------------------------------------------------------------------------- /C++17/Library/Sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Sampling.h -------------------------------------------------------------------------------- /C++17/Library/Search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Search.h -------------------------------------------------------------------------------- /C++17/Library/StringConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/StringConversion.h -------------------------------------------------------------------------------- /C++17/Library/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/StringView.h -------------------------------------------------------------------------------- /C++17/Library/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/C++17/Library/Variant.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/README.md -------------------------------------------------------------------------------- /cpp_11_lib.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/cpp_11_lib.csv -------------------------------------------------------------------------------- /cpp_14_lib.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/cpp_14_lib.csv -------------------------------------------------------------------------------- /cpp_17_lib.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/cpp_17_lib.csv -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/main.cpp -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTimmons/ModernCPP_Examples/HEAD/premake5.lua --------------------------------------------------------------------------------