Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Group (=) and integer vectors with leading zero #416

Closed
sgreben opened this issue Feb 15, 2016 · 1 comment
Closed

Group (=) and integer vectors with leading zero #416

sgreben opened this issue Feb 15, 2016 · 1 comment
Labels

Comments

@sgreben
Copy link

sgreben commented Feb 15, 2016

Group (=) seems to treat a leading 0 in an integer vector as distinct from all other values:

  = 0 0   
(,0
 ,1)

  = 0 1 0 
(,0
 ,1
 ,2)

 = 0 0 1 0
(,0
 1 3
 ,2)

  = 0 1 0 2
(,0
 ,1
 ,2
 ,3)

  = 0 1 0 0
(,0
 ,1
 2 3)     

This does not occur for heterogeneous lists:

= (0;1;0;`a)
(0 2
 ,1
 ,3)     
@tavmem tavmem added the bug label Mar 2, 2016
@tavmem
Copy link
Collaborator

tavmem commented Mar 3, 2016

This is a regression:
It works fine in commit d52f0b3 of Nov 29, 2015.
It's broken in commit e8673c0 also of Nov 29, 2015.

@tavmem tavmem closed this as completed in d519fbd Mar 3, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants