IPv6 Firewall block routing header type 0

Is there a way to block packets containing routing header type 0 in RouterOS?

Like the way ip6tables does:

Filter all packets that have RH0 headers:

$IP6TABLES -A INPUT -m rt --rt-type 0 -j DROP
$IP6TABLES -A FORWARD -m rt --rt-type 0 -j DROP
$IP6TABLES -A OUTPUT -m rt --rt-type 0 -j DROP

Not at the moment, but we might add this feature in the future.