filter a list by gender

There is a convenient helper function in WP core called wp_list_filter().

Easy as:

$male = wp_list_filter( $list, [ 'gender' => 'male' ] );