Sweet Apex Examplepublic class TaggedStringDemo { @tag public static String n(List items, List values) { return 'prefix__' + String.join(items, ''); } public static void main() { String s = n`Name`; } }Transpiled Apexpublic class TaggedStringDemo { public static String n(List items, List values) { return 'prefix__' + String.join(items, ''); } public static void main() { String s = (String)TaggedStringDemo.n(new List{ 'Name' }, new List{ }); } }UsageMethods with @tag annotation should be public/global static and accept parameters of List and List.Contribute on Github! Edit this section.
Transpiled Apexpublic class TaggedStringDemo { public static String n(List items, List values) { return 'prefix__' + String.join(items, ''); } public static void main() { String s = (String)TaggedStringDemo.n(new List{ 'Name' }, new List{ }); } }UsageMethods with @tag annotation should be public/global static and accept parameters of List and List.Contribute on Github! Edit this section.
UsageMethods with @tag annotation should be public/global static and accept parameters of List and List.Contribute on Github! Edit this section.