tableau icon indicating copy to clipboard operation
tableau copied to clipboard

proposal: add new field property `Order` to check field monotonicity

Open wenchy opened this issue 2 years ago • 0 comments

enum Order {
    ORDER_NONE = 0;
    ORDER_INCR = 1; // increasing
    ORDER_DECR = 2; // decreasing
}

Example

Score Desc
Map<int32, Item>|{order:ORDER_INCR } string
Item's score Item's desc
1 desc1
5 desc5
8 desc8

wenchy avatar Oct 12 '23 08:10 wenchy