#### Is your feature request related to a problem? ``` import pandas as pd import piso piso.register_accessors() arr = pd.arrays.IntervalArray.from_tuples( [(1,5), (3,6), (2,4)], closed="both") arr.piso.intersection() ``` #### Describe the solution you'd like ``` [[3, 4]] ``` In interval computation closed interval is a quite normal case, can you support that?
Is your feature request related to a problem?
Describe the solution you'd like
In interval computation closed interval is a quite normal case, can you support that?