public static void Put <TKey, TValue>(this LightningCursor cur, TKey key, TValue value, PutOptions options = PutOptions.None)
        {
            var keyBytes   = cur.ToBytes(key);
            var valueBytes = cur.ToBytes(value);

            cur.Put(keyBytes, valueBytes, options);
        }