(remove []Condition, allConditions bool)
| 42 | } |
| 43 | |
| 44 | func SearchMetaConditionsWithout(remove []Condition, allConditions bool) []Condition { |
| 45 | metaConds := SearchMetaConditions() |
| 46 | return metaConditionsWithout(metaConds, remove, allConditions) |
| 47 | } |
| 48 | |
| 49 | func metaConditionsWithout(metaConds, remove []Condition, allConditions bool) []Condition { |
| 50 | retConds := make([]Condition, 0, len(metaConds)) |