Sunidhi Bansal has Published 1085 Articles

multiset clear() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

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

262 Views

In this article we will be discussing the working, syntax and examples of multiset::clear() function 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 the same like a set, in a specific ... 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

272 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

352 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

301 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

is_rvalue_reference Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:16:39

247 Views

In this article we will be discussing the working, syntax and examples of std::is_rvalue_reference template in C++ STL. is_rvalue_reference template in C++ is used to check whether the defined type is a rvalue reference or not.What is an rvalue?Rvalues are the values which are on the right side of an ... Read More

is_lvalue_reference Template in C++

Sunidhi Bansal

Sunidhi Bansal

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

216 Views

In this article we will be discussing the working, syntax and examples of std::is_lvalue_reference template in C++ STL.is_lvalue_reference template in C++ is used to check whether the defined type is an lvalue reference or not.What is an lvalue?Lvalues are the values which are on the left side of an assignment ... Read More

iswgraph() in C/C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:09:02

118 Views

In this article we will be discussing the working, syntax and examples of iswgraph() function in C++ STL.iswgraph() is a function which comes under the header file. This function is used to check whether the given wide character has any graphical representation or not. The function is the wide ... Read More

is_const Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:05:15

263 Views

In this article we will be discussing the working, syntax and examples of std::is_const template in C++ STL.is_const template in C++ is used to check whether the defined type is a const-qualified type or not.What is const-qualified type?We say a type as a const-qualified when the value of the type ... Read More

is_class template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:02:32

168 Views

In this article we will be discussing the working, syntax and examples of std::is_class template in C++ STL.is_class template is used to check whether the defined type is class type not any other type.What is a class?A class is an user defined data type or a data structure which contains ... Read More

Advertisements