Binder\Semantics\Operators\OperatorKind.cs (38)
421IntAddition = Int | Addition,
422UIntAddition = UInt | Addition,
423LongAddition = Long | Addition,
424ULongAddition = ULong | Addition,
425NIntAddition = NInt | Addition,
426NUIntAddition = NUInt | Addition,
427FloatAddition = Float | Addition,
428DoubleAddition = Double | Addition,
429DecimalAddition = Decimal | Addition,
430EnumAndUnderlyingAddition = EnumAndUnderlying | Addition,
431UnderlyingAndEnumAddition = UnderlyingAndEnum | Addition,
432UserDefinedAddition = UserDefined | Addition,
433LiftedIntAddition = Lifted | Int | Addition,
434LiftedUIntAddition = Lifted | UInt | Addition,
435LiftedLongAddition = Lifted | Long | Addition,
436LiftedULongAddition = Lifted | ULong | Addition,
437LiftedNIntAddition = Lifted | NInt | Addition,
438LiftedNUIntAddition = Lifted | NUInt | Addition,
439LiftedFloatAddition = Lifted | Float | Addition,
440LiftedDoubleAddition = Lifted | Double | Addition,
441LiftedDecimalAddition = Lifted | Decimal | Addition,
442LiftedEnumAndUnderlyingAddition = Lifted | EnumAndUnderlying | Addition,
443LiftedUnderlyingAndEnumAddition = Lifted | UnderlyingAndEnum | Addition,
444LiftedUserDefinedAddition = Lifted | UserDefined | Addition,
445PointerAndIntAddition = PointerAndInt | Addition,
446PointerAndUIntAddition = PointerAndUInt | Addition,
447PointerAndLongAddition = PointerAndLong | Addition,
448PointerAndULongAddition = PointerAndULong | Addition,
449IntAndPointerAddition = IntAndPointer | Addition,
450UIntAndPointerAddition = UIntAndPointer | Addition,
451LongAndPointerAddition = LongAndPointer | Addition,
452ULongAndPointerAddition = ULongAndPointer | Addition,
453StringConcatenation = String | Addition,
454StringAndObjectConcatenation = StringAndObject | Addition,
455ObjectAndStringConcatenation = ObjectAndString | Addition,
456DelegateCombination = Delegate | Addition,
457DynamicAddition = Dynamic | Addition,
458Utf8Addition = Utf8 | Addition,