10 lines
223 B
C#
Raw Permalink Normal View History

2022-04-10 03:38:39 +03:00
using System;
namespace YoutubeDownloader.Core.Utils.Extensions;
2023-07-12 17:22:13 +03:00
public static class GenericExtensions
2022-04-10 03:38:39 +03:00
{
2023-10-21 17:58:59 +03:00
public static TOut Pipe<TIn, TOut>(this TIn input, Func<TIn, TOut> transform) =>
transform(input);
}