Args returns the current argument set in the window frame.
(ctx context.Context)
| 500 | |
| 501 | // Args returns the current argument set in the window frame. |
| 502 | func (wfr *WindowFrameRun) Args(ctx context.Context) (Datums, error) { |
| 503 | return wfr.ArgsWithRowOffset(ctx, 0) |
| 504 | } |
| 505 | |
| 506 | // ArgsWithRowOffset returns the argument set at the given offset in the window frame. |
| 507 | func (wfr *WindowFrameRun) ArgsWithRowOffset(ctx context.Context, offset int) (Datums, error) { |
nothing calls this directly
no test coverage detected