Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
vendor
/
gix-attributes
/
src
/
parse
/
mod.rs
blob: 82cacc8ed02f1a0d335227a2fcd576c8a410d710 [
file
] [
log
] [
blame
]
///
pub
mod
ignore
;
mod
attribute
;
pub
use
attribute
::{
Error
,
Iter
,
Kind
,
Lines
};
/// Parse git ignore patterns, line by line, from `bytes`.
pub
fn
ignore
(
bytes
:
&[
u8
])
->
ignore
::
Lines
<
'
_
>
{
ignore
::
Lines
::
new
(
bytes
)
}