Data tree replace negatives with zero

Hello there,

How does in work in data trees to replace all negative values with 0?
id be thankful if someone could help.

DataTree Replace elemts.gh (115.0 KB)

Just set to item access and let grasshopper handle the tree:

if (x < 0.0):
    a = 0
else:
    a = x