Infix operators placed between the operands they act on (e.g. 2 + 2).

learn more… | top users | synonyms

1
vote
0answers
438 views

Infix to Postfix Converter Python 2.7

Im trying to create a infix to postfix converter in python for a homework assignment, I found multiple ones online that seem simple enough but none of them meet the requirements I need. I have to use ...
1
vote
1answer
104 views

Infix opertors in constructor to set fields

I want to define one (or two, depends on how you look at it) operators in scala. Something like this : _ ==> _ | _ where the underscore stands for the arguments. The tricky part is, that the operator ...
5
votes
3answers
153 views

Applicative style for infix operators?

Is there a way to make applicative uses of <$> and <*> look nice when dealing with infix operators? I think that ((++) <$> a <*> ((++) <$> b <*> c )) looks much ...
2
votes
1answer
94 views

Is it possible to define an infix function?

Is it possible to define my own infix function/operator in CoffeeScript (or in pure JavaScript)? e.g. I want to call a foo b or a `foo` b instead of a.foo b or, when foo is global function, ...
8
votes
1answer
293 views

How to check Haskell infix operator precedence

I can see the type of an infix operator in GHCi with :t like so: >:t (.) (.) :: (b -> c) -> (a -> b) -> a -> c How can i see the operator precedence in GHCi? is that possible? ...
2
votes
2answers
551 views

Prolog infix operator definition

I am recently learning about Prolog and I find the three types used for defining infix operators confusing. What are the differences between xfx, xfy and yfx when specifying the type of an operator? ...
7
votes
1answer
988 views

Why can't I chain several Scala infix method calls

I am working on a DSL and I've run into a problem with using methods as infix operators in a chain. I'll just try to explain it with some code. I have a trait Term and case classes Literal and ...
0
votes
3answers
353 views

Is it possible to use the pipeline operator to call a method on a returned object?

Is it possible to call a method on a returned object using the pipeline infix operator? Example, I have a .Net class (Class1) with a method (Method1). I can currently code it like this: let myclass ...
6
votes
3answers
2k views

Scala match decomposition on infix operator

I'm trying to understand the implementation of Lists in Scala. In particular I'm trying to get my head around how you can write match expressions using an infix operator, for example: a match { ...