This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Transform iterable collection of Strings to iterable collection of &str and pass to libMain() | |
fn main() { | |
xargo_lld_wrapper::libMain(std::env::args().map(|el| el.as_str()).collect::<Vec<_>>()); | |
} | |
-- | |
/Users/bRad/.cargo/bin/cargo test --color=always -- --nocapture | |
Compiling xargo-lld-wrapper v0.1.0 (file:///Users/bRad/Development/bg/experiments/rust/rpi3/xargo-lld-wrapper) | |
error: `el` does not live long enough | |
--> src/main.rs:4:68 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return parser.ServiceNode.Nodes.OfType<TreeNode>() | |
.SelectMany(n => n.Nodes.OfType<TreeNode>()) | |
.Single(n => n.Text == Protocol.Values[(int)protocol]) | |
.Nodes.OfType<TreeNode>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![allow(unused_variables)] | |
trait ArgsExtMethods<'a, T> where Self: Iterator<Item = &'a T>, | |
T: Sized + 'a { | |
fn get_item_following_target(&mut self, target: T) -> Option<Self::Item> where Self: Sized, | |
T: PartialEq; | |
} | |
impl<'a, I, T> ArgsExtMethods<'a, T> for I where I: Iterator<Item = &'a T>, | |
T: Sized + PartialEq + 'a { | |
#[inline] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait MyFilter: Iterator { | |
fn my_filter_arg(self, arg: Self::Item) -> MyFilterArgState<Self> where Self: Sized, { | |
MyFilterArgState { iter: self, arg: arg } | |
} | |
fn my_filter<P>(self, predicate: P) -> MyFilterState<Self, P> where Self: Sized, | |
P: Fn(&Self::Item) -> bool, | |
Self::Item: PartialEq, { | |
MyFilterState { iter: self, predicate: predicate } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Socrates:hello-world3 bRad$ lld | |
lld is a generic driver. | |
Invoke ld.lld (Unix), ld (macOS) or lld-link (Windows) instead. | |
Socrates:hello-world3 bRad$ ld -v | |
@(#)PROGRAM:ld PROJECT:ld64-278.4 | |
configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS) | |
LTO support using: LLVM version 8.1.0, (clang-802.0.41) | |
TAPI support using: Apple TAPI version 1.33.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Crosstool-NG Configuration | |
# | |
CT_CONFIGURE_has_wget=y | |
CT_CONFIGURE_has_curl=y | |
CT_CONFIGURE_has_stat_flavor_BSD=y | |
CT_CONFIGURE_has_make_3_81_or_newer=y | |
CT_CONFIGURE_has_libtool_2_4_or_newer=y | |
CT_CONFIGURE_has_libtoolize_2_4_or_newer=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoconf [email protected] isl libtool pkg-config | |
automake gdbm isl011 libunistring pyenv | |
binutils gettext [email protected] libvorbis python | |
cloog glib [email protected] lzip qemu | |
cloog018 gmp jpeg mpfr readline | |
cmake gmp4 lame mpfr2 sdl2 | |
coreutils gmp@4 libffi mpfr@2 sdl2_mixer | |
doxygen gnu-getopt libmikmod nettle smpeg2 | |
eigen gnu-indent libmodplug nmap sqlite | |
ffmpeg gnu-sed libmpc node wget |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO ] Performing some trivial sanity checks | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' | |
[DEBUG] Testing '! ( -n )' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![allow(unused_variables, dead_code)] | |
use std::fmt; | |
use std::error::Error; | |
fn main() | |
{ | |
match do_work() | |
{ | |
Ok(v) => assert!(v == 4), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate owned_chars | |
use std::str::Chars; | |
use owned_chars::{OwnedChars, OwnedCharsExt}; | |
... | |
#[derive(Debug)] | |
pub struct Iter<'a> { | |
iter: Chars<'a>, |