powerRange

fun powerRange(min: Int? = null, max: Int? = null)

Filters by power range.

Example: powerRange(min = 3, max = 5) produces pow>=3 pow<=5

Parameters

min

The minimum power (inclusive), or null for no minimum

max

The maximum power (inclusive), or null for no maximum