Git Product home page Git Product logo

get_index_of_vector's Introduction

Get index of vector

"get index of vector" is Vector with GetIndex trait.

Cargo.toml

Add dependencies get_index_of_vector.

[dependencies]
get_index_of_vector = "1.0.0"

Usage

Return type of Vector<T>.get_index(&self, &char) is IndexResult used Result Pattern. So pattern match is available.

// import crete.
extern crete get_index_of_vector;
use get_index_of_vector::IndexResult;
use get_index_of_vector::GetIndex;

...

let characters = vec!['A', 'B', 'C', 'D', 'E'];
let character  = 'C';
match characters.get_index(&character) {
    IndexResult::Exist(index) => println!("index: {}, character: {}", index, characters[index]),
    IndexResult::None         => println!("Character is not exist.")
}
// ndex: 2, character: C

Sample Code

$ cd src
$ cargo build
$ cargo run

Setting up a Rust Development Environment (for Darwin)

$ brew install rust
$ rustc -V
rustc 1.17.0

$ cargo -V
cargo 0.18.0-dev (fe7b0cd 2017-04-24)

get_index_of_vector's People

Contributors

atsushi130 avatar

Watchers

James Cloos avatar  avatar

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.