type github.com/jackc/pgx/v5.RowToFunc
5 uses
github.com/jackc/pgx/v5 (current package)
rows.go#L432: type RowToFunc[T any] func(row CollectableRow) (T, error)
rows.go#L437: func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
rows.go#L458: func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
rows.go#L466: func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
rows.go#L495: func CollectExactlyOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {