About 13,700,000 results
Open links in new tab
  1. c - What does tilde (~) operator do? - Stack Overflow

    I recently saw the above operator in a code,I googled for it but found nothing.The code is below.Please describe what actually does this operator do? #include<stdio.h> int main() { …

  2. The tilde operator in Python - Stack Overflow

    Nov 29, 2011 · Just to complete things further, the tilde operator is documented for integers at This clear's things up for me a bit. I was a bit confused because in Python integers are …

  3. What does the "~" (tilde/squiggle/twiddle) CSS selector mean?

    May 28, 2012 · Searching for the ~ character isn't easy. I was looking over some CSS and found this .check:checked ~ .content { } What does it mean?

  4. What's the difference between tilde(~) and caret(^) in package.json?

    After I upgraded to the latest stable node and npm, I tried npm install moment --save. It saves the entry in the package.json with the caret ^ prefix. Previously, it was a tilde ~ prefix. Why are ...

  5. Meaning of tilde in Linux bash (not home directory)

    Meaning of tilde in Linux bash (not home directory) Asked 16 years, 4 months ago Modified 3 years, 8 months ago Viewed 186k times

  6. c# - use of tilde (~) in asp.net path - Stack Overflow

    The tilde refers to the application root directory, and will be translated correctly in control properties such as NavigateUrl. My understanding is that if you use it in plain-HTML tags, it will …

  7. What is the difference between HEAD^ and HEAD~ in Git?

    HEAD^ (caret) and HEAD~ (tilde) are both used to obtain a parent commit of HEAD. They can also end in numbers, e.g. HEAD^2 and HEAD~3. They seem similar. What are the differences?

  8. How to manually expand a special variable (ex: ~ tilde) in bash

    Although you're right that this does work for unquoted tildes (and only in bash, which is what was requested), it's my impression that OP is asking about quoted tilde characters; running …

  9. Difference between $HOME and '~' (tilde)? - Stack Overflow

    Jun 4, 2015 · Note the following from "POSIX Tilde Expansion" The pathname resulting from tilde expansion shall be treated as if quoted to prevent it being altered by field splitting and …

  10. c++ - The tilde operator in C - Stack Overflow

    I've seen the tilde operator used in the ELF hashing algorithm, and I'm curious what it does. (The code is from Eternally Confused.) unsigned elf_hash ( void *key, int len ) { unsigned char *p =...