def serialize_to_ranking_expression()

in clearbox/features.py [0:0]


  def serialize_to_ranking_expression(self) -> str:
    """Serialize the node to the ranking expression format."""
    return (
        f"fill_nan({self._arg.serialize_to_ranking_expression()}, "
        f"{self._fill_with.serialize_to_ranking_expression()})"
    )