Opened 6 years ago
Closed 6 years ago
#2960 closed enhancement (done)
Row and Column query methods for StringMatrix
Reported by: | abeham | Owned by: | pfleck |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.16 |
Component: | Data | Version: | trunk |
Keywords: | Cc: |
Description
ValueTypeMatrix<T> has methods:
- GetRow(int row): IEnumerable<T>
- GetColumn(int col): IEnumerable<T>
- CloneAsMatrix(): T[,]
StringMatrix doesn't have these, as string is not a value type. These methods should be provided.
Change History (5)
comment:1 Changed 6 years ago by abeham
- Owner set to abeham
- Status changed from new to accepted
comment:2 Changed 6 years ago by abeham
- Owner changed from abeham to pfleck
- Status changed from accepted to reviewing
comment:3 Changed 6 years ago by abeham
- Version set to trunk
comment:4 Changed 6 years ago by pfleck
- Status changed from reviewing to readytorelease
reviewed r16280: Change looks good. I also compared the API of both ValueTypeMatrix and StringMatrix and they are practically identical now.
comment:5 Changed 6 years ago by pfleck
- Resolution set to done
- Status changed from readytorelease to closed
Note: See
TracTickets for help on using
tickets.
r16280: added query methods