DDX and DDY material nodes?

The documentation on DDX and DDY is currently seriously lacking. From what I understand from looking it up with google it somehow takes the neighbouring pixels. But it hard to imagine the use of it and how to use them.
My guess is it is somehow possible to use them for cheap blur by stacking them or to generate outlines/lines by color difference?
Most helpful would be if there are any examples using those nodes, anything maybe in one of the many UE4 example projects?

These are just the hlsl ddx/ddy functions. They’re advanced and the best info you are going to find is what’s online for hlsl. They give the approximate screenspace derivative of the value you request. The most common use is to compute your own mipmap level, which can be passed into the texture sample node.