bool
isSelectedChoice(ChoiceView $choice, string|array $selectedValue)
Returns whether a choice is selected for a given form value. Unfortunately Twig does not support an efficient way to execute the "is_selected" closure passed to the template by ChoiceType. It is faster to implement the logic here (around 65ms for a specific form). Directly implementing the logic here is also faster than doing so in ChoiceView (around 30ms). The worst option tested so far is to implement the lo