Example #1
0
        public static Stamp Send(this Stamp source, out Stamp anonymous)
        {
            Stamp inflated = source.Event();

            anonymous = inflated.Peek();
            return(inflated);
        }
Example #2
0
        public static (Stamp inflated, Stamp anonymous) Send(this Stamp source)
        {
            Stamp inflated  = source.Event();
            Stamp anonymous = inflated.Peek();

            return(inflated, anonymous);
        }