initialize Method

Initiates the group and all its items.

In most cases, this method will be called automatically by a group or store managing the group, so you generally don’t need to call it manually unless you have a specific reason to do so

@returns this
The instance of the group, allowing for method chaining

API

initialize(): this;

Example

import {group} from '@bitfiber/rx';
 
const someGroup = group();
 
// Initializes the group and all items within the group
someGroup.initialize();