Font combines <~ but the > is not connected appearing strange
Wow, what does this thing mean in Java?
On Sun, Apr 24, 2016 at 5:59 AM Richard Mark [email protected]
wrote:
Font combines <~ but the > is not connected appearing strange
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
https://github.com/tonsky/FiraCode/issues/179
I don't believe there is a <~> operator in Java. ~ is bitwise complement.
IntelliJ collapses type parameters into <~>, example:
https://www.dropbox.com/s/13iildrlpuohwan/Screenshot%202016-06-02%2009.38.30.png
True. <~> is not a Java operator. It's simply a visual IntelliJ uses to abbreviate type parameters. This ligature would increase readability for IntelliJ users.
Nice job. <~> is also used in Swift a lot of times as custom two-way mapping operators.
Most helpful comment
True.
<~>is not a Java operator. It's simply a visual IntelliJ uses to abbreviate type parameters. This ligature would increase readability for IntelliJ users.