str2d.Str2D.add

Str2D.add(*args, **kwargs) Str2D[source]

Public method for adding the data without the need to use the + operator. We use the join_h method to concatenate the data horizontally with additional arguments.

Parameters:
  • args (Tuple[Str2D]) – The Str2D objects to add.

  • kwargs (dict) – Additional keyword arguments to pass to the join_h method.

Returns:

A new Str2D object with the added data.

Return type:

Str2D

See also

__add__

Add the data.

__radd__

Add the data.

add

Add the data.