Skip to content
Advertisement

Structural pattern matching and infinity

I am computing the Lp distance functions for non-negative p‘s. For all but p = 0 and p = ∞ a built-in pow() function serves well. Before I learned about a structural pattern matching, I had used a dictionary and exception handling:

JavaScript

Some people didn’t want exceptions here. So I rewrote the snippet into the following one:

JavaScript

Why case inf: is not correct (Python v3.10.2)?

Advertisement

Answer

In a case statement, a simple name is a pattern that captures (assigns) to that name. In contrast, a dotted name is a patterns that refers to the value of that name.

In simple terms NAME will always succeed and it will set NAME = <subject>.

In simple terms NAME1.NAME2 will succeed only if <subject> == NAME1.NAME2

Using just case inf: means that the value to match is unconditionally assigned to the name inf – it does not matter if the name was previously bound.
What you want instead is case math.inf:, which means to compare against this value.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement