Sunidhi Bansal has Published 1078 Articles

map emplace() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-Apr-2020 11:57:07

796 Views

In this article we will be discussing the working, syntax and examples of map::emplace() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

map emplace_hint() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-Apr-2020 11:54:52

204 Views

In this article we will be discussing the working, syntax and examples of map::emplace_hint() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

is_reference Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:59:22

123 Views

In this article we will be discussing the working, syntax and examples of std::is_reference template in C++ STL.is_reference is a template which comes under header file. This template is used to check whether the given type T is a reference type or not.This template is a combination of is_rvalue ... Read More

is_polymorphic template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:55:52

105 Views

In this article we will be discussing the working, syntax and examples of std::is_polymorphic template in C++ STL.is_polymorphic is a template that comes under the header file in C++. This template is used to check whether the class is a polymorphic class or not and return the result either ... Read More

is_trivial function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:50:08

201 Views

In this article we will be discussing the working, syntax and examples of std::is_trivial template in C++ STL.is_trivial is a template which comes under header file. This template is used to check whether the given type T is a trivial class or notWhat is a trivial class type in ... Read More

is_scalar template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:47:17

218 Views

In this article we will be discussing the working, syntax and examples of std::is_scalar template in C++ STL.is_scalar is a template which comes under header file. This template is used to check whether the given type T is a scalar type or notThis template is a combination of is_arithmetic, ... Read More

multiset begin() and end() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:31:00

2K+ Views

In this article we will be discussing the working, syntax and examples of multiset::begin() and multiset::end() functions in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a ... Read More

is_arithmetic Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:28:08

301 Views

In this article we will be discussing the working, syntax and examples of std::is_arithmetic template in C++ STL.is_arithmetic template helps to check whether the given class T is of arithmetic type or not.What is an Arithmetic Type?Arithmetic type consists of two types, that areintegral types − In this we define ... Read More

is_abstract template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:24:57

385 Views

In this article we will be discussing the working, syntax and examples of std::is_abstract template in C++ STL.Is_abstract template helps to check whether the class is an abstract class or not.What is an abstract class?Abstract class is a class which has at least one Pure Virtual Function. We use Abstract ... Read More

is_empty template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:21:38

325 Views

In this article we will be discussing the working, syntax and examples of std::is_empty template in C++ STL.is_empty is a template which comes under the header file. This template is used to check whether the given class T is an empty class or not.What is an empty class?A class ... Read More

Advertisements