• Creates a new singly linked list node instance.

    If provided, automatically connects the node with its next node.

    Type Parameters

    Parameters

    • Optionalnext: N["next"] = null

      The next node, or null if the node has no next connection.

    Returns N

    A new singly linked list node instance with the specified next connection.