Sunidhi Bansal has Published 1085 Articles

is_fundamental Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:29:40

215 Views

In this article we will be discussing the working, syntax and examples of std::is_fundamental template in C++ STL.is_ fundamental is a template which comes under the header file. This template is used to check whether the given type T is a fundamental data type or not.What is Fundamental type?Fundamental ... Read More

is_final template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:08:08

185 Views

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

forward_list::clear() and forward_list::erase_after() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:37:29

440 Views

In this article we will be discussing the working, syntax and examples of forward_list::clear() and forward_list::erase_after() functions in C++.What is a Forward_list in STL?Forward list are sequence containers that allow constant time insert and erase operations anywhere within the sequence. Forward lists are implemented as singly linked lists. The ordering ... Read More

list::push_front() and list::push_back() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:35:10

4K+ Views

In this article we will be discussing the working, syntax and examples of list::push_front() and list::push_back() functions in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More

list::pop_front() and list::pop_back() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:32:36

536 Views

In this article we will be discussing the working, syntax and examples of list::pop_front() and list::pop_back() functions in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More

list::front() and list::back() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:30:01

3K+ Views

In this article we will be discussing the working, syntax and examples of list::front() and list::back() functions in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More

list splice() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:27:02

601 Views

In this article we will be discussing the working, syntax and examples of list::splice() function in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory allocation. List ... Read More

list rbegin() and rend() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:24:30

526 Views

In this article we will be discussing the working, syntax and examples of list::rbegin() and list::rend() functions in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More

queue::swap() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:22:02

806 Views

In this article we will be discussing the working, syntax and examples of queue::swap() function in C++ STL.What is a queue in C++ STL?Queue is a simple sequence or data structure defined in the C++ STL which does insertion and deletion of the data in FIFO(First In First Out) fashion. ... Read More

queue::push() and queue::pop() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:19:24

2K+ Views

In this article we will be discussing the working, syntax and examples of queue::push() and queue::pop() functions in C++ STL.What is a queue in C++ STL?Queue is a simple sequence or data structure defined in the C++ STL which does insertion and deletion of the data in FIFO(First In First ... Read More

Advertisements