Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to convert a 16-bit number between big-endian and little-endian values in Rust

2 Answers

0 votes
use std::fmt;

struct BitSet(u16);

impl fmt::Display for BitSet {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:016b}", self.0)
    }
}

fn main() {
    // 16 bit 
    let mut n: u16 = 4660;

    println!("{}", BitSet(n));

    n = (n << 8) | (n >> 8);

    println!("{}", BitSet(n));
}


      
/*
run:
   
0001001000110100
0011010000010010
   
*/

 



answered Jan 3, 2025 by avibootz
edited Jan 3, 2025 by avibootz
0 votes
fn main() {
    // 16 bit 
    let mut n: u16 = 4660;
 
    print!("{n:b}\n");
 
    n = (n << 8) | (n >> 8);
 
    print!("{n:b}\n");
}
 
// 00010010 00110100
// 00110100 00010010
 
       
/*
run:
    

1001000110100
11010000010010
    
*/

 



answered Jan 3, 2025 by avibootz
...