Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

Operator					Associativity
-------------------------------------------------------------
() [] -> .					left to right
! ~ ++ -- - (type) * & sizeof new delete	right to left
->* .*						left to right
* / %						left to right
+ -						left to right
<< >>						left to right
< <= > >=					left to right
== !=						left to right
&						left to right
^						left to right
|						left to right
&&						left to right
||						left to right
?:						right to left
= += -= *= /= %= <<= >>= &= ^= |= throw		right to left
?: (C++, third operand)				right to left
,						left to right

$FreeBSD$