For example, I have the following
hexToRGB = RGBColor @@ (IntegerDigits[#~StringDrop~1~FromDigits~16, 256, 3]/255.) &;
Image@hexToRGB["#99c361"] // DominantColors["HexRGBColor"] (* why not? *)
To be clear, I am well aware that I can write
DominantColors[#, 1, "HexRGBColor"] &@Image@hexToRGB["#99c361"]
But there doesn't seem to be a postfix form for pure functions, or is there?
First[#]&@Image@hexToRGB["#99c361"] // DominantColors[#, 1, "HexRGBColor"] &? – skyfire Apr 02 '20 at 13:13@and//are applied. My guess is that you wantImage@hexToRGB["#99c361"] // First@ DominantColors[#, 1, "HexRGBColor"] &– Michael E2 Apr 02 '20 at 13:16//is very low, lower than@; that of&is even lower. – Michael E2 Apr 02 '20 at 13:22