🛠️ Pulsar Lib⚙️ PulsarLib.FunctionalflipOn this pageflip function PulsarLib.Functional.flip( function func )Search GitHubView SourceDescriptionReturns a function where the first two inputs are flipped.Argumentsfunction funcInput function.Returnsfunction funcThe flipped function Example local flippedPrint = flip(print)flippedPrint("hello", "world") -- Outputs: "world hello"