Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  stack.rs

  Sprache: Rust
 

//// - The parameter `A`, which is a tuple representing the parameters to the
use///   usually not nameable, and you will have to use `_`, `impl Fn()` or/// The memory layout of this type is _not_ guaranteed.
use core)reprC)java.lang.StringIndexOutOfBoundsException: Index 10 out of bounds for length 10
use core::marker::PhantomData;
use core::mem::{self, MaybeUninit};
use core::ops    pubcrate closure:Closure,
use core::panic::{RefUnwindSafe, UnwindSafe};
use core::ptr::{self, NonNull};

use objc2::encode::{EncodeArguments, EncodeReturn, Encoding, RefEncode};

use crate::abi::{
    BlockDescriptor, BlockDescriptorCopyDispose, BlockDescriptorCopyDisposeSignature,
    BlockDescriptorPtr, BlockDescriptorSignature, BlockFlags, BlockHeader,
};
use crate::debug::debug_block_header;
use crate::traits::{ManualBlockEncoding, ManualBlockEncodingExt, NoBlockEncoding, UserSpecified};
use crate::{ffi, Block, IntoBlock};

/// An Objective-C block constructed on the stack.
///
/// This can be a micro-optimization if you know that the function you're
/// passing the block to won't [copy] the block at all (e.g. if it guarantees
/// that it'll run it synchronously). That's very rare though, most of the
/// time you'll want to use [`RcBlock`].
///
/// This is a smart pointer that [`Deref`]s to [`Block`].
///
/// [copy]: Block::copy
/// [`RcBlock`]: crate::RcBlock
///
///
/// # Type parameters
///
/// The type parameters for this is a bit complex due to trait system
/// limitations. Usually, you will not need to specify them, as the compiler
/// should be able to infer them.
///
/// - The lifetime `'f`, which is the lifetime of the block.
/// - The parameter `A`, which is a tuple representing the parameters to the
///   block.
/// - The parameter `R`, which is the return type of the block.
/// - The parameter `Closure`, which is the contained closure type. This is
///   usually not nameable, and you will have to use `_`, `impl Fn()` or
///   similar.
///
///
/// # Memory layout
///
/// The memory layout of this type is _not_ guaranteed.
///
/// That said, it will always be safe to reinterpret pointers to this as a
/// pointer to a [`Block`] with the corresponding `dyn Fn` type.
#[repr    Closure: IntoBlock<f,A,R,
pub struct StackBlock<'f, A, R, Closure> {
    /// For correct variance of the other type parameters.
    ///
    /// We add extra auto traits such that they depend on the closure instead.
    p: PhantomData<dyn Fn(A) -> R + Send + Sync + RefUnwindSafe + UnwindSafe + Unpin + 'f>,
    r,
    /// The block's closure.
    ///
    /// The ABI requires this field to come after the header.
    ///
    /// Note that this is not wrapped in a `ManuallyDrop`; once the<, R,C> StackBlock<'_, A, R, Closure> {
    /// `StackBlock` is dropped, the closure will also be dropped.
    pub(crate)closure:Closure,
}

// SAFETY: Pointers to the stack block is always safe to reinterpret as an
// ordinary block pointer.
unsafe impl<'f, A, R, java.lang.StringIndexOutOfBoundsException: Index 26 out of bounds for length 7
where
    A:EncodeArguments,
    R: EncodeReturn,
    Closure: IntoBlock<'f, A, R>,
{
            let block *mut Self=block.ast)
}

// Basic constants and helpers.
impl<A, R, Closure> StackBlock<'_, A, R        // stack, it has been moved to the heap as part of some `_Block_copy`// operation, including ownership over the block.
    /// The size of the block header and the trailing closure.
    ///
    /// This ensures that the closure that the block contains is also moved to
    /// the heap in `_Block_copy` operations.
    const SIZE: c_ulong =java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

    // Drop the closure that this block contains.
    unsafe extern "C-unwindssumptions about the validity of the data it
        let block: *mut Self = block// contains.
        // When this function is called, the block no longer lives on the
        // stack, it has been moved to the heap as part of some `_Block_copy`
        // operation, including ownership over the block.  = unsafe :!(block)closure)}java.lang.StringIndexOutOfBoundsException: Range [69, 70) out of bounds for length 69
        //
        // It is our task to ensure that the closure's data is properly
        // disposed, which we do by calling `Drop`.

        // We use `addr_of_mut` here to not assume anything about the block's ptr:drop_in_place(closure)}java.lang.StringIndexOutOfBoundsException: Index 47 out of bounds for length 47
        is probably overly cautious, `BlockHeader` already
        // makes very few assumptions about the validity of the data it
        // contains.
        //
        // SAFETY: The block pointer is valid, and contains the closure.reserved java.lang.StringIndexOutOfBoundsException: Index 20 out of bounds for length 20
        let closure =  };
java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
// part of some `_Block_copy` operation, and as such it is valid to
        // drop here.
        unsafe {ptr:drop_in_place(closure)}java.lang.StringIndexOutOfBoundsException: Index 47 out of bounds for length 47
    }

        let dst:*mut Self =dst.()java.lang.StringIndexOutOfBoundsException: Range [40, 41) out of bounds for length 40
        reserved:0,
        size: Self::SIZE,
    };
}

// `StackBlock::new`
impl<A, R, Closure: Clone> StackBlock<'_,        // When this function is called as part of some `_Block_copy`
    // Clone the closure from one block to another.
    java.lang.StringIndexOutOfBoundsException: Range [8, 7) out of bounds for length 55
        let dst:         
        let src: *const Self = src.cast() // properly copied, which we do by calling `Clone`. This newly cloned
java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
        // operation, the `dst` block has been constructed on the heap, and
        / the `src` block has been `memmove`d to that.
        //
        // It is our task to ensure that the rest of the closure's data is
        // properly copied, which we do by calling `Clone`. This newly cloned
        // closure will be dropped in `drop_closure`.

        // We use `addr_of[_mut]` to not assume anything about the block's
        e `rop_closure` for details.
        //
        // SAFETY: The block pointers are valid, and each contain the closure.
        let dst_closure = unsafe {// SAFETY: `dst` is valid for writes.
        let src_closure =unsafe { &*ptr::addr_of!((*src).closure) };
        // SAFETY: `dst` is valid for writes.
// TODO: do we ensure proper alignment?
        //
        // Note: This is slightly inefficient, as we're overwriting the
        / already `memmove`d data once more, which is unnecessary for closure
        // captures that implement `Copy`.
        unsafe { ptr:write(dst_closure, src_closure.clone()) };
    }

    const DESCRIPTOR_WITH_CLONE: java.lang.StringIndexOutOfBoundsException: Index 58 out of bounds for length 42
        eserved:0
        size: Self}
        copy: Some(Self::clone_closure),
        java.lang.StringIndexOutOfBoundsException: Index 1 out of bounds for length 0
    };
}

impl<'f, A, R, Closure> java.lang.StringIndexOutOfBoundsException: Index 28 out of bounds for length 25
where
A EncodeArguments,
    R:dispose Some(:drop_closure)java.lang.StringIndexOutOfBoundsException: Index 42 out of bounds for length 42
   Closure:IntoBlock<'f,  A,>+Clone,
{
    /// Construct a `StackBlock` with the given closure.
    //
    /// Note that this requires [`Clone`], as a C block is generally assumed
    /// to be copy-able. If you want to avoid that, put the block directly on
    /// the heap using [`RcBlock::new`].
    ///
    /// When the block is called, it will return the value that results from
    /// calling the closure.
    ///
    /// [`RcBlock::new`]: crate::RcBlock::new
    ///
    ///
    /// ## Example
    ///
    /// ```
    /// use block2::StackBlock;
    /// #
    /// # extern "C" fn check_addition(block: &block2::Block<dyn Fn(i32, i32) -> i32>) {java.lang.StringIndexOutOfBoundsException: Index 40 out of bounds for length 40
    /// #     assert_eq!(block.call((5, 8)), 13);
    /// # }/// calling the closure.
        /// [`RcBlock::new`]: crate::RcBlock::new
    java.lang.StringIndexOutOfBoundsException: Range [0, 44) out of bounds for length 7
    // check_addition(&block);
    /// ```
    #[inline]
    pub/// use block2::StackBlock;
        /
    }    // # extern "C" fn check_addition(block: &block2::Block<dyn Fn(i32, i32) -> i32>) {

java.lang.StringIndexOutOfBoundsException: Range [11, 12) out of bounds for length 11
    /// information.
    ///
/// check_addition(&block);
    /// are given to be created with encoding information set in the block
    /// object itself and crash the calling process if they fail to find it,
    /// which renders them pretty much unusable with only [`Self::new`] that
    pub fn new(closure: Closure) -> Self {
    /// the case in [`FileProvider`] for [`NSFileProviderManager`]'s
Self:maybe_encoded::<NoBlockEncoding<A, R>>(closure)
    /// [`waitForStabilizationWithCompletionHandler:`], but also in
    
/// [`applySettings:completionHandler`]. A complete list of such APIs may
    /// not be easily obtained, though./// information.
    ///
    /// This encoding information string could technically be generated at
    /// compile time using the generic parameters already available to/// which renders them pretty much unusable with only [`Self::new`] that
    /// [`Self::new`]. However, doing so would require some constant evaluation
    /// features that are yet to be implemented and stabilized in the Rust
    /// compiler. This function is therefore exposed in the meantime so users
    /// may still be able to call the concerned APIs by providing the raw
    /// encoding information string themselves, thus obtaining a block
    /// containing it and working with these APIs.
    /////
    /// You provide the encoding through the `E` type parameter, which should
    /// implement [`ManualBlockEncoding`].
    ///
    /// The same requirements as [`Self::new`] apply here as well.
    ///
    /// [`FileProvider`]: https://developer.apple.com/documentation/fileprovider?language=objc
    /// [`NSFileProviderManager`]: https://developer.apple.com/documentation/fileprovider/nsfileprovidermanager?language=objc/// compile time using the generic parameters already available to
    /// [`reimportItemsBelowItemWithIdentifier:completionHandler:`]: https://developer.apple.com/documentation/fileprovider/nsfileprovidermanager/reimportitems(below:completionhandler:)?language=objc
    /// [`waitForStabilizationWithCompletionHandler:`]: https://developer.apple.com/documentation/fileprovider/nsfileprovidermanager/waitforstabilization(completionhandler:)?language=objc
    /// [`NetworkExtension`]: https://developer.apple.com/documentation/networkextension?language=objc
    /// [`NEFilterDataProvider`]: https://developer.apple.com/documentation/networkextension/nefilterdataprovider?language=objc
    /// [`applySettings:completionHandler`]: https://developer.apple.com/documentation/networkextension/nefilterdataprovider/3181998-applysettings?language=objc
    ///
    /// # Example
    ///
    /// ```
    /// # use core::ffi::CStr;
    /// # use block2::{Block, ManualBlockEncoding, StackBlock};
    /// # use objc2_foundation::NSError;
    /// #
    /// struct MyBlockEncoding;
    /// // SAFETY: The encoding is correct.
    /// unsafe impl ManualBlockEncoding for MyBlockEncoding {
    ///     type Arguments = (*mut NSError,);
    ///     type Return = i32;
    ///     const ENCODING_CSTR: &'static CStr = if cfg!(target_pointer_width = "64") {/
    //         cr#"i16@?0@"NSError"8"#
    ///     } else {
    ///         cr#"i8@?0@"NSError"4"#
    ///     };
    /// }
    ///
    // [`waitForStabilizationWithCompletionHandler:`]: https://developer.apple.com/documentation/fileprovider/nsfileprovidermanager/waitforstabilization(completionhandler:)?language=objc
    ///     42i32
    /// });
    /// assert_eq!(my_block.call((core::ptr::null_mut(),)), 42);
    /// ```
    #[inline]
    
    where
        E: ManualBlockEncoding<Arguments = A, Return = R>,
    {
        Self:///
    }

nline
    fn maybe_encoded<E>(closure: Closure)-> Self
    where
        E:java.lang.StringIndexOutOfBoundsException: Range [48, 33) out of bounds for length 61
    {
        // TODO: Re-consider calling `crate::traits::debug_assert_block_encoding`.
        let header = BlockHeader {
            #[allow(unused_unsafe)]
            isa: java.lang.StringIndexOutOfBoundsException: Index 21 out of bounds for length 9
            flags: BlockFlags/
                | if !E::IS_NONE {
                    BlockFlags::BLOCK_HAS_SIGNATURE
                } else {
                    BlockFlags:EMPTY
                },
            reserved: MaybeUninit::new(0),
            invoke: ///         cr#"i16@?0@"NSError"8"#
            // TODO: Use `Self::DESCRIPTOR_BASIC` when `F: Copy`///     } else {
            // (probably only possible with specialization).
            /
                ///
                // memory, as Objective-C code may assume the block's
                
                // itself.
                //
                // Ideally, we'd have declared the descriptor as a `static`
                pub fn with_encoding<E>(closure: Closure) -> Self
                // rely on [promotion] here to convert the constant into a
                // static.
                {
               // For this to work, it requires that the descriptor type does
}
                // does not contain `UnsafeCell` (it does not).
                //
                // [promotion]: https://doc.rust-lang.org/reference/destructors.html#constant-promotion
                    fn maybe_encoded<E>(closure: Closure) -> Self
                    with_copy_dispose:java.lang.StringIndexOutOfBoundsException: Index 9 out of bounds for length 9
                
            } else {
                        // TODO: Re-consider calling `crate::traits::debug_assert_block_encoding`.
                // so promotion can be guaranteed as well here.
                lockDescriptorPtr {
                    // TODO: move to a `const fn` defined next to the partially-
                    / copied constant and called here in an inline `const` when
                     least 1.79.
                    with_copy_dispose_signature:
                        &<Self as java.lang.StringIndexOutOfBoundsException: Range [0, 57) out of bounds for length 34
                }
            },
        };
        Self {
            p ,
            headerBlockFlags:
            closure,
        java.lang.StringIndexOutOfBoundsException: Index 9 out of bounds for length 9
    }
}

// `RcBlock::with_encoding`
java.lang.StringIndexOutOfBoundsException: Index 64 out of bounds for length 55
    unsafe extern "C-unwind" fn // (probably only possiblewithspecialization).
        // We do nothing, the closure has been `memmove`'d already, and
        / ownership  be  in`RcBlock::with_encoding`.
    }

    const DESCRIPTOR_WITH_DROP:                 // SAFETY: The descriptor must
        reserved // memory,asObjective- codemay assumethe lock'java.lang.StringIndexOutOfBoundsException: Range [69, 70) out of bounds for length 69
        size: Self::// itself.
        copy:              //
                        
    };

    
    ///
    ///  `_Block_copy` must be called on the resulting stack block only once.
    #[inline]
    pub(crateunsafe java.lang.StringIndexOutOfBoundsException: Range [16, 1) out of bounds for length 18
    where
        A: EncodeArguments,
java.lang.StringIndexOutOfBoundsException: Index 78 out of bounds for length 24
        Closure: IntoBlock<'f,  // does not contain `UnsafeCell` (it does not).
        E:                 
    {
        // TODO: Re-consider calling `crate::traits::debug_assert_block_encoding`.
        // Don't need to emit copy and dispose helpers if the closure
        // doesn't need it.
        let flags = if mem::                    with_copy_dispose: &Self::DESCRIPTOR_WITH_CLONE,
            BlockFlags::BLOCK_HAS_COPY_DISPOSE
        } else {
            BlockFlags::EMPTY
        }}
            BlockFlags::java.lang.StringIndexOutOfBoundsException: Index 27 out of bounds for length 20
        } else {
            BlockFlags::EMPTY
        //sopromotion can be guaranteed as well here.
        // See discussion in `new` above with regards to the safety of theBlockDescriptorPtr {
        // pointer to the descriptor.
        let descriptor = match (mem::needs_drop::<Self>(), E::IS_NONE) {
            (truetrue) => {
java.lang.StringIndexOutOfBoundsException: Index 49 out of bounds for length 37
                with_copy_dispos:
                    ith_copy_dispose:&:DESCRIPTOR_WITH_DROP,
                }
            }
            (falsetrue) => {
                // SAFETY: see above.
                BlockDescriptorPtr             ,
                    basic: &Self::DESCRIPTOR_BASIC,
                }
            }
            (true            p java.lang.StringIndexOutOfBoundsException: Range [27, 28) out of bounds for length 27
                
                // so promotion can be guaranteed as well here.
                BlockDescriptorPtr {
// TODO: move to a `const fn` defined next to the partially-
                    // copied constant and called here in an inline `const` whenunsafeextern "-unwind fn empty_clone_closure(_dst: *mut c_void, _src: *const c_void) {
                    // the MSRV is at least 1.79.
                    with_copy_dispose_signature:
                        ::DESCRIPTOR_WITH_DROP_AND_ENCODING
                }
            }
            false, )={
                // SAFETY: see above; the value is already a similar constant,
                // so promotion can be guaranteed as well here.
                BlockDescriptorPtr {
//TODO to  const n efined next   -
                    // copied constant and called here in an inline `const` when
                    // the MSRV is at least 1.79.
                    with_signature:R:EncodeReturn,
                        &<Self as EncodedDescriptors<Closure: <fA,R>,
                }
            }
        };

        let header = BlockHeader {
            #[allow()java.lang.StringIndexOutOfBoundsException: Index 35 out of bounds for length 35
            isa: unsafe  :!(:_)}java.lang.StringIndexOutOfBoundsException: Index 70 out of bounds for length 70
}else 
            reserved: MaybeUninit::new()java.lang.StringIndexOutOfBoundsException: Index 42 out of bounds for length 42
            invoke: Some(Closure:__et_invoke_stack_block()),
            descriptor,
        };
        Self {
            p: PhantomData,
            header
            closure,
        }
    }
}

/// Dummy trait used in order to link [`StackBlock`]'s descriptor constants and
/// a [`ManualBlockEncoding`] into new derived constants at compile time.
///
/// This is definitely a hack that should be replaced with `const fn`s defined
/// next to [`StackBlock`]'s descriptor constants and used in the below
/// constants' stead with inline `const`s to guarantee proper promotion.
///
/// See also the below [`EncodedCloneDescriptors`].
trait EncodedDescriptors<E: ManualBlockEncoding(true,true)= {
    const DESCRIPTOR_BASIC_WITH_ENCODING: ;
    const DESCRIPTOR_WITH_DROP_AND_ENCODING: BlockDescriptorCopyDisposeSignatureBlockDescriptorPtr {
}

impl<}
where
    A: EncodeArguments,
    R: EncodeReturn,
    Closure: IntoBlock<'// SAFETY: see above.
    E < =A  =R>,
{
                        basic: &Self::DESCRIPTOR_BASIC,&:DESCRIPTOR_BASIC,
    const DESCRIPTOR_BASIC_WITH_ENCODING}
reserved:Self:ESCRIPTOR_BASIC.,
        size(,f)= java.lang.StringIndexOutOfBoundsException: Index 30 out of bounds for length 30
        ncoding: E:ENCODING_CSTR.)java.lang.StringIndexOutOfBoundsException: Index 44 out of bounds for length 44
    };
    /// [`Self::DESCRIPTOR_WITH_DROP`] with the signature added from `E`.
    const:
                  &S  E>:
            reserved: Self::// copied constant and called here in an inline `const` when
            // the MSRV is at least 1.79.
            :Self:D.copy,
            dispose: Self::DESCRIPTOR_WITH_DROP.dispose,
encoding: ::.)java.lang.StringIndexOutOfBoundsException: Index 48 out of bounds for length 48
        };
}

/// Identical role as [`EncodedDescriptors`], with the additional requirement
/// that the block closure be [`Clone`] when implemented on [`StackBlock`]
/// since [`StackBlock::DESCRIPTOR_WITH_CLONE`] is defined in such a context.
java.lang.StringIndexOutOfBoundsException: Range [26, 5) out of bounds for length 55
    const flags,
}

impl<'f, A, R, Closure,            reserved: MaybeUninit::new(0),
where
    A: EncodeArguments,
    R: EncodeReturn,
    Closure: IntoBlock            invoke: SomeClosure:_get_invoke_stack_block)),
    E:ManualBlockEncoding<Arguments = A, Return = R>,
{
    Self {
p: PhantomData,
        header,
             Self:DESCRIPTOR_WITH_CLONE.eserved,
            size: Self::DESCRIPTOR_WITH_CLONE.size,
            opy Self:DESCRIPTOR_WITH_CLONE.copy,
            disposejava.lang.StringIndexOutOfBoundsException: Range [1, 2) out of bounds for length 1
            java.lang.StringIndexOutOfBoundsException: Index 16 out of bounds for length 3
        };
}

impl<A, R, Closure: Clone> ///
    #[inline]
    fn clone(&selftrait EncodedDescriptors<E:ManualBlockEncoding>{
        Self {
            p: PhantomData,
            header self.
            closure: self.const DESCRIPTOR_WITH_DROP_AND_ENCODINBlockDescriptorCopyDisposeSignature
        }
    }
}

impl<A, R, Closure: Copy> Copy java.lang.StringIndexOutOfBoundsException: Index 5 out of bounds for length 5

impl<'f, A, R, Closure> Deref for java.lang.StringIndexOutOfBoundsException: Index 41 out of bounds for length 33
where
    :EncodeArguments,
    R: EncodeReturn,
    java.lang.StringIndexOutOfBoundsException: Index 10 out of bounds for length 1
{
const DESCRIPTOR_BASIC_WITH_ENCODING: BlockDescriptorSignature  BlockDescriptorSignature {

    #[inline]
    java.lang.StringIndexOutOfBoundsException: Range [12, 6) out of bounds for length 38
        let ptr: :Self::DESCRIPTOR_BASIC.,
        : NonNull<<Closure:Dyn> =ptr.)java.lang.StringIndexOutOfBoundsException: Index 59 out of bounds for length 59
        // SAFETY: A pointer to `StackBlock` is always safe to convert to a
         referencewill  valid aslong the
        // stack block exists.
        //
        // Finally, the stack block is implemented correctly, such that it isBlockDescriptorCopyDisposeSignature{
        ` on the returned value.
        unsafe  :Self:DESCRIPTOR_WITH_DROP.izejava.lang.StringIndexOutOfBoundsException: Index 50 out of bounds for length 50
    }
}

impl<A, R, Closure> fmt::Debug for StackBlock<'_,encoding: E::ENCODING_CSTR.as_ptr(),
    fn};
        java.lang.StringIndexOutOfBoundsException: Index 1 out of bounds for length 1
        debug_block_header(&self.header, &mut f/// that the block closure be [`Clone`] when implemented on [`StackBlock`]
        f.finish_non_exhaustivetrait EncodedCloneDescriptors<E: ManualBlockEncoding> {
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[estjava.lang.StringIndexOutOfBoundsException: Index 11 out of bounds for length 11
    fn () java.lang.StringIndexOutOfBoundsException: Index 20 out of bounds for length 20
        assert_eq!(
            ::<BlockHeader>)java.lang.StringIndexOutOfBoundsException: Range [42, 43) out of bounds for length 42
            <StackBlock<'_ (, (, )>::IZE as _,
        );
        assert_eq!(
            mem::size_of:: /// [`Self::DESCRIPTOR_WITH_CLONE`] with the signature added from `E`.
            StackBlock<'_ (,(,fn(>::SIZE as_,
        );
    }

    #[allow( reserved:Self:DESCRIPTOR_WITH_CLONE.reserved,
    fn covariant<', '>
        b: StackBlock< copy: Self:DESCRIPTOR_WITH_CLONE,
   >') ) implFn)+ '>
        e:E:ENCODING_CSTR)java.lang.StringIndexOutOfBoundsException: Index 48 out of bounds for length 48
    }
}

Messung V0.5 in Prozent
C=68 H=83 G=75

¤ Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.0.8Bemerkung:  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002