Code Monkey home page Code Monkey logo

rusty_btreec's Introduction

rusty_btreec's People

Contributors

bartlomieju avatar piscisaureus avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

rusty_btreec's Issues

Strings get mangled when retrieved

Using either String or CString type causes mangling of returned values. I was expecting that for String but having CString types mangled is unexpected. Need to investigate what's causing the problem

Test case:

rusty_btreec/src/lib.rs

Lines 230 to 239 in 593814b

btree.set(User::new("Dale", "Murphy", 44));
btree.set(User::new("Roger", "Craig", 68));
btree.set(User::new("Jane", "Murphy", 47));
assert_eq!(btree.count(), 3);
btree.ascend(None, |item| {
eprintln!("item {:#?}", item);
ascending.push(format!("{} {} {}", item.first, item.last, item.age));
true
});

Using String:

---- ascend_descend stdout ----
a User {
    first: "Roger",
    last: "Craig",
    age: 68,
} b User {
    first: "Crai",
    last: "Rogery",
    age: 44,
} cmp Less
a User {
    first: "Jane",
    last: "Murphy",
    age: 47,
} b User {
    first: "Murph",
    last: "Janeg",
    age: 68,
} cmp Greater
a User {
    first: "Jane",
    last: "Murphy",
    age: 47,
} b User {
    first: "Jane",
    last: "Murphy",
    age: 44,
} cmp Equal

Using CString:

---- ascend_descend stdout ----
a User {
    first: "Roger",
    last: "Craig",
    age: 68,
} b User {
    first: "Crai",
    last: "Roger\x00",
    age: 44,
} cmp Less
a User {
    first: "Jane",
    last: "Murphy",
    age: 47,
} b User {
    first: "Murph",
    last: "Jane\x00",
    age: 68,
} cmp Greater
a User {
    first: "Jane",
    last: "Murphy",
    age: 47,
} b User {
    first: "Jane",
    last: "Murphy",
    age: 44,
} cmp Equal

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.