Monday, February 4, 2019

Re: hexa numbers operations : masking, shifting

Le lundi 4 février 2019 02:29:29 UTC+1, John Little a écrit :
> On Monday, February 4, 2019 at 12:03:40 AM UTC+13, niva...@gmail.com wrote:
> >
> > Can I do hexa numbers operations like shifting and masking in vimscript ?
>
> See and(), or(), and xor()
>
> :echo and(0x0103, 0x00ff)
>
> For shifting, multiplying or dividing by 2 would work.
>
> :echo 0x0103 / 256
>
> Regards, John Little

Thank you John!

Shifting can be made multiplying or dividing by pow(x,2).

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: